export type RetryResult = { status: string; expectedStatus: string; }; /** * Determine whether all expected retry results have been received. * * A test is "complete" when every retry from 0 to effectiveMax is present, * where effectiveMax is the first retry whose status matches expectedStatus * (or maxRetries if none matched). */ export declare function areRetriesComplete(maxRetries: number, results: Map): boolean; export declare function getTestStatusFromRetries(retries: RetryResult[]): "flaky" | "failed" | "passed" | "skipped"; //# sourceMappingURL=status-from-retries.d.ts.map