export interface GuardDoc { /** What problem this guard solves */ purpose: string; /** Hook event + matcher (what tools/actions fire it) */ triggers: string; /** What it does when fired (block vs advisory vs context injection) */ behavior: string; /** How to enable/disable, relevant config.json fields */ configuration: string; /** Which --level installs it */ level: 'scoring' | 'full'; } export declare const GUARD_DOCS: Record; /** * Format guard documentation for console output. * @param name — specific guard name, or undefined for all guards */ export declare function formatGuardDocs(name?: string): void; //# sourceMappingURL=docs.d.ts.map