/// <reference types="jest" />
export interface ITestClosures {
    describe: jest.Describe;
    test: jest.It;
    it: jest.It;
}
export declare type Condition = boolean | (() => boolean);
