import type { ReportArtifact, ReportViewModel } from './types.js'; export declare const escapeReportHtml: (value: unknown) => string; export declare function reportAnchor(prefix: string, raw: string): string; export declare function reportCompare(a: string, b: string): number; export declare function renderReportHtml(model: ReportViewModel): string; export declare function createReportArtifact(model: ReportViewModel, resourceId?: string): ReportArtifact;