/** * Terminal comparison table for plan results. * * Renders the side-by-side comparison of "with docs" vs "without docs" * plan runs with colored deltas. * * @module */ import type { PlanComparison } from '../types.js'; /** * Render the full comparison report to the terminal. * * @param comparison - The plan comparison data */ export declare function renderComparison(comparison: PlanComparison): void; /** * Render the header section showing task and config. */ export declare function renderHeader(task: string, model: string, backend: string, branches: { withDocs: string; withoutDocs: string; }): void; /** * Render a phase progress message. */ export declare function renderPhaseStart(phase: number, total: number, label: string): void; /** * Render a phase completion message. */ export declare function renderPhaseComplete(durationMs: number, outputTokens: number, cost: number, success: boolean): void; //# sourceMappingURL=comparison.d.ts.map