/** * View 3: ASCII Gantt Timeline. * * Renders a text-based Gantt chart showing concurrent execution * phases, workers, and task spans from trace data. * * @module */ import type { ParsedTrace } from '../trace-reader.js'; /** * Render an ASCII Gantt timeline from a parsed trace. * * Shows each phase with its workers and task spans. Tasks are * rendered as horizontal bars proportional to their duration. * * @param trace - Parsed trace data */ export declare function renderTimeline(trace: ParsedTrace): void; //# sourceMappingURL=timeline.d.ts.map