import type { RxStorageInstanceReplicationInput, RxStorageInstanceReplicationState, RxStorageReplicationDirection } from '../types/index.d.ts'; export declare function getLastCheckpointDoc(state: RxStorageInstanceReplicationState, direction: RxStorageReplicationDirection): Promise; /** * Sets the checkpoint, * automatically resolves conflicts that appear. */ export declare function setCheckpoint(state: RxStorageInstanceReplicationState, direction: RxStorageReplicationDirection, checkpoint: CheckpointType): Promise; export declare function getCheckpointKey(input: RxStorageInstanceReplicationInput): Promise;