import TestMethod from "./TestMethod.js"; export default class TestRunner { private static _instance; static get instance(): TestRunner; tests: TestMethod[]; executed: TestMethod[]; maxParallelRun: number; constructor(); xmlReport(pathRewriter?: (p: string) => string): string; printAll(): void; run(filter?: string): Promise; _run(tests: TestMethod[]): Promise; } //# sourceMappingURL=TestRunner.d.ts.map