/**
* HTML Report Generator.
*
* Generates a self-contained HTML file with embedded data and
* Chart.js visualizations for deep analysis after a run.
*
* @module
*/
import type { RunLog } from '../ai/types.js';
/**
* Generate a self-contained HTML report from run logs.
*
* The output includes:
* - Run summary table
* - Cost breakdown charts (Chart.js via CDN)
* - Token distribution visualization
* - Daily cost trend chart
*
* @param logs - Array of run logs
* @returns Complete HTML string
*/
export declare function generateHtmlReport(logs: RunLog[]): string;
//# sourceMappingURL=html-report.d.ts.map