import type { Command } from "commander"; import type { EmitContext, HarneryProgramContext } from "../commander.js"; /** * `harn checkpoint`: durable context continuity across compaction. * * A checkpoint captures enough of the current work that a fresh generation of * the same session can resume it after the adapter compacts or restarts. * `create` writes a capsule, `show` prints the latest one, `status` reports the * phase, generation, and whatever context telemetry the adapter supplied. */ export declare function registerCheckpointCommand(program: Command, emit: EmitContext, context?: HarneryProgramContext): void; //# sourceMappingURL=checkpoint.d.ts.map