export interface IStorage {
    getItem(key: string): string | undefined | null;
    setItem(key: string, value: string): void;
    clear(): void;
}
