/** * Markdown rendering for Arenza scan results. * * The output is designed to be both: (a) readable in a terminal piped to * `less`, (b) pasteable into a Slack/Linear/Notion update or a GitHub * comment. Uses no ANSI codes — colour is added separately by the bin * entry. Numbers always carry units; percentages are 1-decimal. */ import type { ScanResult } from './scan.js'; /** Render a scan result as a markdown report. */ export declare function renderMarkdownReport(res: ScanResult, opts?: { topOpportunities?: number; }): string; //# sourceMappingURL=report.d.ts.map