import type { OrgDaemon, RunningOrg } from './daemon.js'; /** Time-travel debugging: replay from a specific checkpoint by run ID. * Creates a fresh daemon instance and replays events from the target run's bus.jsonl. */ export declare function replayFrom(daemon: OrgDaemon, name: string, run: string): Promise; /** Resume a previous run from its checkpoint (runtime.json state). Reconstructs * the org's agents and mailboxes from the persisted state, enabling * run recovery after crashes/stops. Wired to `org resume-from` — full state * restoration including mailbox queues, policy counters, and session state, * with checkpoint TTL and checksum validation. Returns the resumed RunningOrg or null. */ export declare function resumeOrg(daemon: OrgDaemon, name: string): Promise; /** Snapshot a run's event log (bus.jsonl) into a new run directory for replay, * tagged with a `.branch-source` marker recording its origin. This is a * point-in-time snapshot for replay/inspection — it does not execute the * branch as a "what-if" scenario. `root` is the org root directory * (equivalent to `OrgDaemon.root` / the CLI's `ctx.cwd`). */ export declare function branchCheckpoint(root: string, name: string, run: string, _branchName: string): { ok: true; branchRun: string; } | { ok: false; error: string; }; //# sourceMappingURL=checkpoint-ops.d.ts.map