import { AsyncStorage } from "./AsyncStorage"; export declare class AsyncJsonFileStorage implements AsyncStorage { filePath: string; constructor(filePath: string); getItem(key: string): Promise; setItem(key: string, value: string): Promise; removeItem(key: string): Promise; } //# sourceMappingURL=AsyncJsonFileStorage.d.ts.map