import type { RunComparison } from "./types.js"; /** Options for formatting a run comparison as a human-readable report. */ export interface ComparisonFormatOptions { /** Enable ANSI color codes in output. @default true */ readonly color?: boolean | undefined; /** Show unchanged cases and include per-grader change details. */ readonly verbose?: boolean | undefined; } /** * Formats a RunComparison as a human-readable console report. */ export declare function formatComparisonReport(comparison: RunComparison, options?: ComparisonFormatOptions): string; //# sourceMappingURL=format.d.ts.map