import { HtmlReporterOptions } from "./types"; declare class ReportAggregator { constructor(opts: HtmlReporterOptions); options: HtmlReporterOptions; reports: any[]; reportFile: string; clean(): void; readJsonFiles(): string[]; createReport(): Promise; } export default ReportAggregator;