import { SnapShotData } from './interface'; declare const Base: any; export declare class Snapshot extends Base { private cacheDir; private uuid; constructor(options: any); get(key: any): Promise; save(key: any, value: any): Promise; delete(key: any): Promise; batchSave(arr: Array): Promise; private getSnapshotFile; } export {};