import { FullResult } from '@playwright/test/reporter'; import JsonReporter from '../json'; declare class HtmlReporter extends JsonReporter { protected outputDir: string; constructor(config: any); protected write(content: string): void; onBegin(): void; onEnd(result: FullResult): void; } export default HtmlReporter;