import { type CheckpointOperation, type StartingOperation } from "../../session/types.ts"; import type { Lane } from "../lane.ts"; import type { Drive, ProcedureResult } from "../types.ts"; /** Consume before_run and commit the initial checkpoint. */ export declare function startRun(lane: Lane, drive: Drive, run: StartingOperation): Promise; /** Advance one durable run boundary with at most one commit. */ export declare function runCheckpoint(lane: Lane, drive: Drive, run: CheckpointOperation): Promise; //# sourceMappingURL=checkpoint.d.ts.map