import type { DigestAction } from "../internals/plan.js"; import type { SupportTemplate } from "../support/render.js"; /** * Render the report's digests as a Markdown document — one section per digest, * the verbatim body in a fenced block so the aligned columns survive. Byte-stable * (no timestamp) so re-applying the artifact is a no-op when nothing changed. */ export declare function reportMarkdown(title: string, digests: DigestAction[]): string; export declare function reportHtml(title: string, digests: DigestAction[], opts?: { refresh?: number; demo?: boolean; support?: SupportTemplate[]; }): string;