import { TestResult } from "@jest/test-result";
interface ResultAttributes {
    start: number;
    end: number;
    test: {
        path: string;
        title?: string;
        errorMessage?: string;
    };
}
export declare function pass(attributes: ResultAttributes): TestResult;
export declare function fail(attributes: ResultAttributes): TestResult;
export {};
//# sourceMappingURL=results.d.ts.map