import Mocha from "mocha"; import type { TestContext } from "./test-context"; export declare class TestRunner { private context; private mochaFactory; constructor(context: TestContext, mochaFactory?: () => Mocha); run(files: string[]): Promise; }