import { TestEach } from '../../test-each';
declare type ResultType = {
    failures: Failure[];
    passes: Pass[];
    totalEntities: number;
    suites: string[];
    tests: string[];
    skips: string[];
};
export declare const result: ResultType;
export declare const cleanup: () => void;
declare type Pass = {
    name: string;
};
declare type Failure = {
    name: string;
    message: string;
};
export declare const waitFinished: () => Promise<void>;
export declare const createTest: (desc?: string | undefined) => TestEach<{}, {}>;
export {};
