import { ITest, ITestFixture } from "./_interfaces"; export declare class TestFixture implements ITestFixture { fixture: { [id: string]: (...args: Array) => any; }; ignored: boolean; ignoreReason: string; focussed: boolean; description: string; filePath: string; private _tests; get tests(): ITest[]; constructor(description: string); addTest(test: ITest): void; }