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