/**
 * @fileoverview Donobu Markdown report renderer.
 *
 * Pure library that turns a `DonobuReport` into a Markdown string suitable
 * for GitHub Actions step summaries, PR comments, or any other
 * Markdown-consuming surface. No filesystem writes, no CLI arg parsing, no
 * environment variable reads — callers own I/O.
 */
import type { DonobuReport } from './model';
export declare function renderMarkdown(report: DonobuReport): string;
//# sourceMappingURL=renderMarkdown.d.ts.map