import type { TestRunResult } from './result'; /** * Format test results as a self-contained HTML page. * Inline CSS, no external dependencies — works as a local file or CI artifact. */ export declare function formatHtml(result: TestRunResult): { html: string; success: boolean; };