/** * IR-DRIFT-IMPL-* — compare an authored IR against a reconstructed one. * Surfaces discrepancies between the design contract and the actual codebase. */ import type { IrStructuralFinding } from './ir-structural.js'; import type { ReconstructResult } from './reconstruct/types.js'; export declare function compareImplementationDrift(authoredIr: unknown, reconstructed: ReconstructResult): IrStructuralFinding[]; //# sourceMappingURL=ir-drift-impl.d.ts.map