import type { TraceReportMode } from './traceReport.js'; interface WriteTraceReportInput { status: 'completed' | 'aborted' | 'failed'; iterations: number; endTime: string; reason?: string; } export declare function writeTerminalTraceReport(input: { readonly ndjsonLogPath: string; readonly tracePath: string; readonly workflowName: string; readonly task: string; readonly runSlug: string; readonly publicationId: string; readonly promptLogPath?: string; readonly mode: TraceReportMode; readonly terminal: WriteTraceReportInput; }): void; export {}; //# sourceMappingURL=traceReportWriter.d.ts.map