export interface IStorageSuite { getItem: (key: string) => Promise; setItem: (key: string, value: string) => Promise; removeItem: (key: string) => Promise; } //# sourceMappingURL=storage.d.ts.map