export type ReanchorGateMode = "correctness" | "performance"; export interface ReanchorProfileReport { profile: string; metrics: { passRate: number; incorrectConfidentRelocations: number; }; timingMs: { perComment: number; p95: number; max: number; reconciliationMax: number; }; } export interface ReanchorGatePolicy { version: 1; correctness: Record; performance: Record; } export declare function evaluateReanchorGate(report: ReanchorProfileReport, policy: ReanchorGatePolicy, mode: ReanchorGateMode): string[]; //# sourceMappingURL=reanchor-gates.d.ts.map