export interface TranscriptEvent { event?: string; conversation?: Record; conversation_id?: string; from?: string; to?: string; type?: string; round?: number; requires_response?: boolean; body?: string; status?: string; response_rounds_used?: number; manager_final?: string; response?: string; tool_name?: string; permission?: string; source?: string; [key: string]: unknown; } export declare function readNdjsonLog(logPath: string): TranscriptEvent[]; export declare function parseNdjson(text: string): TranscriptEvent[]; export declare function formatTranscript(events: TranscriptEvent[], { includeRaw }?: { includeRaw?: boolean; }): string;