export interface AIConfig {
    provider: "openai" | "anthropic" | "google";
    model: string;
    apiKey: string;
}
export declare function getConfigFilePath(): string;
export declare function saveAIConfig(config: AIConfig): Promise<void>;
export declare function loadAIConfig(): Promise<AIConfig | null>;
//# sourceMappingURL=config.d.ts.map