/**
* HTML report renderer — orchestrates sub-modules.
*/
import { type SkillReportContext } from './report-shell.js';
import type { BatchEvaluationReport, EvaluationReport, Report, ReportDocument, Lang } from '../types/index.js';
export declare function renderRunList(runs: ReportDocument[], lang?: Lang): string;
export declare function renderRunDetail(report: EvaluationReport | null, lang?: Lang, skillContext?: SkillReportContext): string;
export declare function renderBatchEvaluationDetail(report: BatchEvaluationReport | null, lang?: Lang): string;
export declare function renderReportDocumentDetail(report: ReportDocument | null, lang?: Lang, skillContext?: SkillReportContext): string;
export declare function renderTrendsPage(variantName: string, runs: Report[], lang?: Lang): string;