import type { TInvariantViolation } from "../types/validation.js"; /** * Thrown when a mutation would leave the system in an invalid state. * Carries the full list of {@link TInvariantViolation} entries that were detected. */ export declare class InvariantViolationError extends Error { readonly violations: TInvariantViolation[]; constructor(violations: TInvariantViolation[]); } //# sourceMappingURL=invariant-violation-error.d.ts.map