/** * Flakiness Detection Module * * Detects when validation passes after previous failure on same tree hash. * Helps identify flaky tests that pass/fail on the same code. */ import type { ValidationResult } from '@vibe-validate/core'; import type { HistoryNote } from '@vibe-validate/history'; /** * Detect flakiness by comparing runs on same tree hash * * @param note - History note containing previous runs * @param currentResult - Current validation result * @returns Formatted warning message or null if no flakiness detected */ export declare function detectFlakiness(note: HistoryNote, currentResult: ValidationResult): string | null; //# sourceMappingURL=flakiness-detector.d.ts.map