import type { Mode, ProviderId } from "../../types.js"; import { type ResumeTarget } from "../../ui-core/bootstrap/session-resume.js"; export interface StartTuiV2Options { readonly mode?: Mode | undefined; readonly provider?: ProviderId | undefined; readonly model?: string | undefined; readonly modelExplicit?: boolean | undefined; readonly noHistory?: boolean | undefined; readonly sessionId?: string | undefined; readonly resume?: ResumeTarget | undefined; } export declare function startTuiV2(options?: StartTuiV2Options): Promise;