import type { FileCoverageSummary } from './coverage'; /** * Generate a multi-file HTML coverage report. * Returns a map of relative output paths → content. * The caller writes each entry into the coverage output directory. */ export declare function generateCoverageHtmlFiles(summaries: FileCoverageSummary[], rootDir: string): Map;