/** * `bober playbook ` — playbook library CLI. * * Subcommands: * list — Print a table of all playbooks. * show — Print the raw markdown content of a playbook. * search — Search for playbooks matching the symptom string. * * 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 25 — src/cli/commands/playbook.ts */ import type { Command } from "commander"; export declare function registerPlaybookCommand(program: Command): void; //# sourceMappingURL=playbook.d.ts.map