import { Test, TestCollection } from '../types';
export declare const given: GivenFn;
export interface GivenFn {
(what: string, tests: Array<Test | TestCollection>): TestCollection;
(what: string): (tests: Array<Test | TestCollection>) => TestCollection;
}