import { Config } from '../types'; export declare class ConfigManager { private store; private fileConfig; constructor(); loadConfig(): Promise; getConfig(): Config; setConfig(path: string, value: any): void; getApiKey(provider: string): string | undefined; validateProvider(provider: string): { valid: boolean; error?: string; }; private mergeConfigs; isAuthenticated(): boolean; getUserTier(): 'base' | 'super' | undefined; } export declare const configManager: ConfigManager; export declare function loadConfig(): Promise; //# sourceMappingURL=config.d.ts.map