import Conf from 'conf'; export interface ReadmeAIConfig { provider: 'anthropic' | 'openai' | 'gemini' | 'ollama'; model?: string; anthropic_api_key?: string; openai_api_key?: string; gemini_api_key?: string; ollama_url?: string; github_token?: string; default_theme?: string; default_output?: string; } export interface ProjectConfig { provider?: string; model?: string; theme?: string; output?: string; diagram?: boolean; badges?: boolean; apiDocs?: boolean; action?: boolean; context?: string; ignore?: string[]; plugins?: string[]; } export declare const config: Conf; export declare function getAPIKey(provider: string): string | undefined; export declare function getGitHubToken(): string | undefined; export declare function getOllamaURL(): string; export declare function loadProjectConfig(repoPath: string): Promise; //# sourceMappingURL=config.d.ts.map