/** * Model Switch Command * Switch to a different model mid-session */ export interface ModelSwitchOptions { serverUrl?: string; json?: boolean; reason?: string; } /** * Switch to a different model */ export declare function modelSwitch(_sessionId: string, modelId: string, options?: ModelSwitchOptions): Promise; //# sourceMappingURL=switch.d.ts.map