import { FullResult, Reporter, TestCase, TestResult } from '@playwright/test/reporter'; type TestOptions = { outputFile?: string; header?: string; footer?: string; workerGraphWidth: number; }; declare class MarkdownTimelineReporter implements Reporter { private options; private suiteStartTime; private suiteEndTime; private testResults; private workerTims; constructor(options: TestOptions); onTestEnd(test: TestCase, result: TestResult): void; onEnd(result: FullResult): void; } export default MarkdownTimelineReporter;