import { Func, Suite, Test } from 'mocha'; /** * Skip the `describe` if the condition is not met */ export declare const describeIf: (condition: boolean, title: string, fn: (this: Suite) => void) => Suite | void; /** * Skip the `test` if the condition is not met */ export declare const testIf: (condition: boolean, title: string, fn?: Func) => Test | void; //# sourceMappingURL=mocha-extensions.d.ts.map