/** * cv admin — Admin-only commands: log inspection, audit, diagnostics. * * Usage: * cv admin logs Last 100 events across all features * cv admin logs --feature interview Interview events only * cv admin logs --feature interview --level error Errors only * cv admin logs --uid Events for a specific user * cv admin logs --since 2025-01-01 Events since a date * cv admin logs --limit 50 Custom limit (max 500) * cv admin logs --json Raw JSON output (pipe-friendly) * * Access: requires `role: "admin"` on the caller's Firestore user document. * Feature logs are written by cli/src/lib/logger.ts and stored in Firestore cliLogs. */ import { Command } from "commander"; export declare function registerAdminCommand(program: Command): void; //# sourceMappingURL=admin.d.ts.map