import { Command } from "commander"; /** * `scai hygiene explain why-blocked ` — read-only verb that combines * `audit references` and `audit template-dependencies` into one * report: "here is every inbound reference that would block (or * potentially block) a delete of this item, grouped by reference kind." * * Lives in its own command group (`explain/`) rather than under * `audit/` because the verb composes two audits — placing it under * either would imply a hierarchy that doesn't match how operators * reach for it. */ export declare const createExplainWhyBlockedCommand: () => Command;