import { Checkpointer } from './checkpointer'; /** * Create a checkpointer that uses the specified file to store persistent state. * @param path - Path to a file holding persistent checkpoint state. */ export declare function file(path: string): Promise; /** * Create a checkpointer that stores its state in memory only. */ export declare function inMemory(): Checkpointer; //# sourceMappingURL=checkpointers.d.ts.map