/** * `bober telemetry ` — local telemetry inspection CLI. * * Subcommands: * status — print whether telemetry is enabled and recent event counts * purge — delete all .bober/telemetry/ files (requires confirmation) * export — concatenate every .bober/telemetry/*.jsonl to stdout * * Error handling: CLI handlers MUST NOT throw. They set process.exitCode=1 * and return on all errors (Pattern C). * * Sprint 28 — src/cli/commands/telemetry.ts */ import type { Command } from "commander"; export declare function registerTelemetryCommand(program: Command): void; //# sourceMappingURL=telemetry.d.ts.map