export interface Config { openaiApiKey?: string; openaiModel?: string; aiEnabled?: boolean; aiContextWindow?: number; aiTemperature?: number; } export declare class ConfigManager { private configPath; private config; constructor(); private loadConfig; private getDefaultConfig; private saveConfig; get(key: keyof Config): any; set(key: keyof Config, value: any): void; getAll(): Config; hasOpenAIKey(): boolean; isAIEnabled(): boolean; } //# sourceMappingURL=config.d.ts.map