import { IKeyValueStorage } from "@walletconnect/keyvaluestorage"; export declare class Storage { private storage; constructor(storage: IKeyValueStorage); getItem(key: string): Promise; setItem(key: string, value: T): Promise; removeItem(key: string): Promise; static getStorage(kvStorage: IKeyValueStorage): Storage; } //# sourceMappingURL=storage.d.ts.map