/** * Report Generator - HTML dashboard reports with charts * * Generates comprehensive HTML reports with visualizations. */ import { BenchResult, BenchSummary } from './bench'; /** * Generate comprehensive HTML reports with all UI features. */ export declare class ReportGenerator { /** * Generate enhanced HTML report. */ static generate(results: BenchResult[], summary: BenchSummary, outputPath?: string): string | null; private static buildHtml; private static calculateStats; private static generateSummaryCards; private static generateLeaderboard; private static generateResultsTable; private static generateCss; private static generateJavaScript; } //# sourceMappingURL=report-generator.d.ts.map