import { type XdgOptions } from "./xdg.js"; export type FileConfig = Record; export interface ParsedConfigFile { base: FileConfig; profiles: Record; defaultProfile?: string; path?: string; error?: string; } export declare function fileConfigToEnv(fc: FileConfig): Record; export declare function knownConfigKeys(): string[]; export declare function defaultConfigPath(env: Record, opts?: XdgOptions): string; export declare function loadConfigFile(env: Record): ParsedConfigFile; //# sourceMappingURL=config-file.d.ts.map