/** * `bober replay ` — manage the frozen replay corpus. * * Subcommands: * capture — Ingest .bober/eval-results/eval-*.json into immutable fixtures * and baseline rows in .bober/replay/replay.db. * list — Print all captured replay cases. * show — Print one case with provenance (contractId, iteration, verdict, path). * run — Re-derive each case's fresh verdict deterministically and diff vs * baseline; prints a per-case delta table; exits 1 on any regression. * * Error handling: CLI handlers MUST NOT throw. They set process.exitCode=1 and * return on all errors. Pattern mirrors src/cli/commands/facts.ts. */ import type { Command } from "commander"; export declare function registerReplayCommand(program: Command): void; //# sourceMappingURL=replay.d.ts.map