export type Test = () => Promise | void; export declare const describe: (name: string, test: Test) => Promise; export declare const it: (name: string, test: Test) => Promise; export declare const xit: (_name: string, _test: Test) => void;