import { PersistentStorage } from '../types'; export declare class LocalForageWrapper implements PersistentStorage { protected storage: LocalForageInterface; constructor(storage: LocalForageInterface); getItem(key: string): Promise; removeItem(key: string): Promise; setItem(key: string, value: string | object | null): Promise; } interface LocalForageInterface { getItem(key: string): Promise; setItem(key: string, value: string | object | null): Promise; removeItem(key: string): Promise; } export {};