import { ApplicationLogger } from '../logger'; import { ITestPlan } from './types'; export declare class TestDescribe { testPlan: ITestPlan; logger: ApplicationLogger; constructor(opts: { testPlan: ITestPlan; }); static withTestPlan(opts: { testPlan: ITestPlan; }): TestDescribe; run(): void; } export declare class MochaTestDescribe extends TestDescribe { } //# sourceMappingURL=describe.d.ts.map