import type { BotConfig } from "../config/config.js"; import type { RuntimeEnv } from "../runtime.js"; import type { WizardPrompter } from "../wizard/prompts.js"; import type { AuthChoice, OnboardOptions } from "./onboard-types.js"; export type ApplyAuthChoiceParams = { authChoice: AuthChoice; config: BotConfig; prompter: WizardPrompter; runtime: RuntimeEnv; agentDir?: string; setDefaultModel: boolean; agentId?: string; opts?: Partial; }; export type ApplyAuthChoiceResult = { config: BotConfig; agentModelOverride?: string; }; export declare function applyAuthChoice(params: ApplyAuthChoiceParams): Promise;