import { Config } from '../types/config.js'; interface ConfigResult { config: Config; filepath?: string; configDir?: string; } declare function load(startDir?: string): Promise; declare function loadWithPath(_startDir?: string): Promise; /** * Save a config object to the global config path. */ declare function save(config: Config): Promise; export declare const ConfigManager: { load: typeof load; loadWithPath: typeof loadWithPath; save: typeof save; }; export {}; //# sourceMappingURL=config-manager.d.ts.map