import { MutantRunOptions, MutantRunResult, TestRunner } from '@stryker-mutator/api/test-runner'; import { StrykerOptions } from '@stryker-mutator/api/core'; import { TestRunnerDecorator } from './test-runner-decorator.js'; /** * Wraps a test runner and implements the retry functionality. */ export declare class MaxTestRunnerReuseDecorator extends TestRunnerDecorator { runs: number; private readonly restartAfter; constructor(testRunnerProducer: () => TestRunner, options: Pick); mutantRun(options: MutantRunOptions): Promise; dispose(): Promise; } //# sourceMappingURL=max-test-runner-reuse-decorator.d.ts.map