/** * Terminal comparison table for implementation results. * * Renders the side-by-side comparison of "with docs" vs "without docs" * implementation runs with colored deltas. * * @module */ import type { ImplementationComparison } from '../types.js'; /** * Render the full implementation comparison report to the terminal. */ export declare function renderComparison(comparison: ImplementationComparison): 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