/** * Capture Agent — CLI command wrapper * * `autokap run` stays local-first: Playwright runs on the user's machine. * The server only provides the compiled program and persists artifacts/results. */ export declare function runLocal(presetId: string, opts: { headed: boolean; output?: string; program?: string; debug?: boolean; env?: string; allowUploadFailure?: boolean; dry?: boolean; regenerateTts?: boolean; exportLogs?: boolean; }): Promise;