export interface ToolConfig {
    defaultModel?: string;
    anthropicApiKey?: string;
    openaiApiKey?: string;
}
export declare const RC_FILE = ".meldrc";
export declare function loadConfig(options?: Partial<ToolConfig>): ToolConfig;
export declare function setupConfig(options: {
    anthropicApiKey?: string;
    openaiApiKey?: string;
    defaultModel?: string;
}): void;
export declare function checkAndPromptConfig(models: string[]): void;
