export declare function describe(name: string, fn: () => void): void;
export declare function test(name: string, fn: () => void | Promise<void>): void;
export declare function expect<T>(actual: T): {
    toBe: (expected: T) => void;
    toEqual: (expected: T) => void;
    toBeTruthy: () => void;
    toBeFalsy: () => void;
    toMatch: (regex: RegExp) => void;
    toHaveLength: (length: number) => void;
    toContain: (item: any) => void;
    toBeGreaterThan: (expected: number) => void;
    toThrow: (expected?: string | RegExp) => void;
};
//# sourceMappingURL=test-utils.d.ts.map