import type { CortexConfig, ProjectScope, ScopePreset, LineLimits } from "../types/cli.js"; export declare const CONFIG_VERSION = "1.0.0"; export declare const DEFAULT_CONFIG: CortexConfig; export declare const SCOPE_PRESETS: ScopePreset[]; export declare function getConfigPath(cwd: string): string; export declare function hasConfig(cwd: string): boolean; export declare function loadConfig(cwd: string): Promise; export declare function mergeConfig(userConfig: Partial | null): CortexConfig; export declare function saveConfig(cwd: string, config: CortexConfig): Promise; export declare function createConfigFromScope(scope: ProjectScope, projectName?: string, customFiles?: string[]): CortexConfig; export declare function getScopePreset(scope: ProjectScope): ScopePreset | undefined; export declare function getEffectiveLineLimits(config: CortexConfig): LineLimits; //# sourceMappingURL=config.d.ts.map