/** * manifest audit-bypasses * * Validates a hand-curated approved-bypass registry against the schema at * docs/spec/registry/bypasses.schema.json, checks that referenced file * paths exist, and surfaces expired review dates. * * Schema and field semantics live in `docs/spec/registry/bypasses.schema.json` * and `docs/spec/registry/README.md`. */ export type BypassFindingSeverity = 'error' | 'warning'; export interface BypassFinding { severity: BypassFindingSeverity; code: string; message: string; index?: number; path?: string; } export interface AuditBypassesOptions { registry?: string; root?: string; strictExpiry?: boolean; format?: 'text' | 'json'; } export interface AuditBypassesResult { findings: BypassFinding[]; errorCount: number; warningCount: number; } export declare function auditBypassesCommand(options?: AuditBypassesOptions): Promise; //# sourceMappingURL=audit-bypasses.d.ts.map