export type IStorageService = { getItem: (key: string) => T | null; setItem: (key: string, value: T) => void; removeItem: (key: string) => void; getKeys: () => string[]; };