/** * `bober memory ` — inspect and distill self-improvement lessons. * * Subcommands: * distill — Distill sprint history into deterministic lessons (idempotent). * list — Print the bounded lesson index. * show — Print one lesson with its sourceEntryRefs provenance. * prune — Quarantine stale/conflicting lessons from INDEX.md into QUARANTINE.md. * * Error handling: CLI handlers MUST NOT throw. They set process.exitCode=1 and * return on all errors. Pattern mirrors src/cli/commands/incident.ts. */ import type { Command } from "commander"; export declare function registerMemoryCommand(program: Command): void; //# sourceMappingURL=memory.d.ts.map