import type { BotConfig } from "../config/config.js"; import type { AgentModelListConfig } from "../config/types.js"; export declare function resolvePrimaryModel(model?: AgentModelListConfig | string): string | undefined; export declare function applyAgentDefaultPrimaryModel(params: { cfg: BotConfig; model: string; legacyModels?: Set; }): { next: BotConfig; changed: boolean; };