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