import { type ParsedConfig } from "./schema.js"; import type { Config } from "../types/index.js"; export type LoadConfigOptions = { configPath?: string; cwd?: string; overrides?: Partial; }; export declare const loadConfig: (options?: LoadConfigOptions) => Config; export declare const validateConfig: (config: unknown) => ParsedConfig; export declare const configExists: (cwd?: string) => boolean; export declare const getConfigPath: (cwd?: string) => string | null; //# sourceMappingURL=loader.d.ts.map