import { Loader, LoaderSync, Options, OptionsSync } from './index'; export declare type Config = any; export declare type CosmiconfigResult = { config: Config; filepath: string; isEmpty?: boolean; } | null; export interface InternalOptions { usePackagePropInConfigFiles?: boolean; metaConfigFilePath: string | null; } export interface ExplorerOptions extends Required, InternalOptions { } export interface ExplorerOptionsSync extends Required, InternalOptions { } export declare type Cache = Map; export declare type LoadedFileContent = Config | null | undefined; export interface Loaders { [key: string]: Loader; } export interface LoadersSync { [key: string]: LoaderSync; } //# sourceMappingURL=types.d.ts.map