import { TestRunResponse } from "../types"; export declare const processTestRun: (testRunResponse: TestRunResponse, enableSoftAssert?: boolean) => void; export declare const shouldStopRetry: (result: TestRunResponse) => boolean; export declare const trackWithRetry: (trackFn: () => Promise, retryLimit?: number, enableSoftAssert?: boolean) => Promise;