export type GuardDef = { id: string; name?: string; description?: string; }; /** * Load L2 guard definitions (SSOT). * * File: /L2.guards.yaml * * Accepts either: * - { guards: [{ id, name?, description? }, ...] } * - [ { id, ... }, ... ] * - [ "guardId", ... ] */ export declare function loadL2Guards(specsDir: string): { defs: GuardDef[]; ids: Set; }; //# sourceMappingURL=guards.d.ts.map