/** * Universal config file loader * Supports .json, .cjs, and .mjs files */ export type MaybePromise = T | Promise; export type LoadedConfig = { config: T; filepath: string; }; export type LoadConfigOptions = { cwd?: string; }; /** * Load a config file from disk * Supports .json, .cjs, and .mjs files */ export declare function loadConfigFile(configPath: string, opts?: LoadConfigOptions): Promise>; //# sourceMappingURL=config-loader.d.ts.map