import type { Run } from "../config/types.js"; /** Options for formatting a run as a human-readable console report. */ export interface ConsoleReportOptions { /** Enable ANSI color codes in output. @default true */ readonly color?: boolean | undefined; /** Include per-grader details for each case. */ readonly verbose?: boolean | undefined; } /** * Formats a Run artifact as a human-readable console report. * Returns a string intended for stdout. */ export declare function formatConsoleReport(run: Run, options?: ConsoleReportOptions): string; /** * Formats a Run as a compact markdown summary table for GitHub Actions `$GITHUB_STEP_SUMMARY`. * For a detailed per-grader markdown report, use `formatMarkdownReport` from `./markdown.ts`. */ export declare function formatMarkdownSummary(run: Run): string; //# sourceMappingURL=console.d.ts.map