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