/** * `agent-bober audit show [--json]` — print the approval audit log for a run. * * Reads .bober/audits/.jsonl. Prints a human-readable table by default * (timestamp / checkpoint / outcome / approver / iteration / duration), or * machine-readable JSON via --json. Exits non-zero with a friendly message * if the audit log is missing (ENOENT). * * Sprint 13 — colocated CLI command per Sprint 9 precedent. * Pattern mirrors src/cli/commands/list-approvals.ts. */ import type { Command } from "commander"; export declare function registerAuditCommand(program: Command): void; //# sourceMappingURL=audit-show.d.ts.map