import { TestSessionStats } from '../core/ITestSession'; export interface IMochaRunner { on(event: 'pass' | 'fail' | 'end' | 'start', callback: (...args: any[]) => void): void; stats?: TestSessionStats; } export interface IMochaInstance { suite: any; stats?: TestSessionStats; run(): IMochaRunner; reporterOptions?: Record; } //# sourceMappingURL=IMochaInstance.d.ts.map