import type { Run } from "../config/types.js"; import type { ReporterPlugin } from "./types.js"; /** * Generate a Markdown report suitable for GitHub PR comments and Step Summary. * Includes per-case results table and gate status. */ export declare function formatMarkdownReport(run: Run): string; /** Built-in Markdown reporter plugin. Produces a detailed per-case report with grader breakdowns. Writes to `options.output` if set, otherwise returns the markdown string. */ export declare const markdownReporterPlugin: ReporterPlugin; //# sourceMappingURL=markdown.d.ts.map