export interface Storage { setItem(key: string, value: string): void; getItem(key: string): string; }