import { Command } from "commander"; /** * `scai hygiene explain` — read-only verbs that compose existing * primitives into focused answers to specific operator questions: * * - `why-blocked ` — what blocks deleting this item * (`audit references` + `audit template-dependencies`). * - `orphan-site ` — what is left behind for a deleted site, * and what still references it (`audit site-residue` + * `audit references`). * * Each verb owns its printed report; the audits it composes run silent. */ export declare const createExplainCommand: () => Command;