import type { ContextOperationRequest } from '../context.ts'; import { type PersistCheckpointCallbacks } from './checkpoint-io.ts'; import type { Engine } from './index.ts'; export declare function createCheckpointPersistenceCallbacks(engine: Engine): PersistCheckpointCallbacks; export declare function persistCheckpointForDataOperation(engine: Engine, workflowId: string, operation: ContextOperationRequest): Promise;