/** * `bober facts ` — manage semantic bi-temporal facts. * * Subcommands: * add — Insert a new fact into the store. * list — Print active (non-invalidated) facts. * show — Print one fact including provenance and temporal fields. * invalidate — Soft-delete a fact (sets t_invalidated; never removes the row). * * Error handling: CLI handlers MUST NOT throw. They set process.exitCode=1 and * return on all errors. Pattern mirrors src/cli/commands/memory.ts. */ import type { Command } from "commander"; export declare function registerFactsCommand(program: Command): void; //# sourceMappingURL=facts.d.ts.map