import type { TranscriptReplay } from '../../tui/protocol.js'; import type { TranscriptData } from './ports.js'; /** * Build a TranscriptReplay frame from transcript data. * Pure synchronous formatter — no store/IO dependencies. * Returns null when there are no replayable items. */ export declare function buildTranscriptReplay(data: TranscriptData): TranscriptReplay | null;