import { Call, IOptions } from "../coverage"; import Reporter from "./reporter"; interface HtmlReporterOptions { autoOpen?: boolean; destination?: string; } declare class HtmlReporter implements Reporter { private autoOpen; private destination; constructor(options?: HtmlReporterOptions); onBegin(options: IOptions, calls: Call[]): void; onTestBegin(options: IOptions, call: Call): void; onTestEnd(options: IOptions, call: Call): void; onEnd(options: IOptions, calls: Call[]): Promise; } export default HtmlReporter;