import type { LoopViolationError } from '../errors.js'; /** * Best-effort `loop-violation` anomaly dispatch from a CLI command's catch * block. Loads config + state + gate set; emits when `'anomaly-notify'` is * gated on; swallows any error along the way (the loop violation itself is * already being surfaced via the existing stderr message + exit 1, and * notification must never make things worse). Phase 23.3. */ export declare function emitLoopViolation(cwd: string, err: LoopViolationError, source: string): Promise; //# sourceMappingURL=loop-violation.d.ts.map