import SupportCode from './SupportCode'; import { EnvelopeListener, ITestCase, ITestPlan, RunOptions } from './types'; export default class TestPlan implements ITestPlan { private readonly runId; private readonly testCases; private readonly supportCode; private readonly runOptions; constructor(runId: string, testCases: ITestCase[], supportCode: SupportCode, runOptions: RunOptions); execute(listener: EnvelopeListener): Promise; } //# sourceMappingURL=TestPlan.d.ts.map