import { StorageBackend } from '@openid/appauth'; import { Storage } from '@ionic/storage'; export declare class IonicStorage implements StorageBackend { store: Storage; init: boolean; getItem(name: string): Promise; removeItem(name: string): Promise; clear(): Promise; setItem(name: string, value: string): Promise; }