import type { LoadConfigOptions } from '../config-schema.js';
export interface ResolvedConfigPath {
    path: string;
    explicit: boolean;
}
export declare function listConfigLayerPaths(options?: LoadConfigOptions, rootDir?: string): Promise<string[]>;
export declare function resolveConfigPath(configPath: string | undefined, rootDir: string): ResolvedConfigPath;
export declare function homeConfigCandidates(): string[];
export declare function pathExists(filePath: string): boolean;
export declare function pathExistsAsync(filePath: string): Promise<boolean>;
//# sourceMappingURL=path-discovery.d.ts.map