import { IWindowStorage } from "./IWindowStorage.js"; export declare class MemoryStorage implements IWindowStorage { private cache; constructor(); initialize(): Promise; getItem(key: string): T | null; getUserData(key: string): T | null; setItem(key: string, value: T): void; setUserData(key: string, value: T): Promise; removeItem(key: string): void; getKeys(): string[]; containsKey(key: string): boolean; clear(): void; decryptData(): Promise; } //# sourceMappingURL=MemoryStorage.d.ts.map