/** * `bober incident ` — top-level incident workflow CLI. * * Subcommands: * start [--severity S1|S2|S3|S4] — Create a new incident. * status — Print rich status for an incident. * end [--verified|--override] — Mark incident resolved. * list — List all incidents. * abort --reason — Abort at any phase. * * Error handling: CLI handlers MUST NOT throw. They set process.exitCode=1 and * return on all errors (Pattern C per briefing). Top-level main().catch() is * the last-ditch fallback, not the primary error path. * * Sprint 24 — src/cli/commands/incident.ts */ import type { Command } from "commander"; export declare function registerIncidentCommand(program: Command): void; //# sourceMappingURL=incident.d.ts.map