import type { BotConfig } from "../config/config.js"; import type { WizardPrompter } from "../wizard/prompts.js"; export declare function applyDefaultModelChoice(params: { config: BotConfig; setDefaultModel: boolean; defaultModel: string; applyDefaultConfig: (config: BotConfig) => BotConfig; applyProviderConfig: (config: BotConfig) => BotConfig; noteDefault?: string; noteAgentModel: (model: string) => Promise; prompter: WizardPrompter; }): Promise<{ config: BotConfig; agentModelOverride?: string; }>;