export interface IStorageItem { key: string; value: T; } export declare class StorageItem { key: string; value: T; constructor(data: IStorageItem); }