import type { HookEvent, TranscriptMsg } from '../base/types'; import type { DummyCommand } from './commands'; export interface DummyTurn { events: HookEvent[]; stdout: string; transcript: TranscriptMsg[]; } export declare function generateDummyTurn(root: string, cmd: DummyCommand, sessionId: string): DummyTurn;