export interface StorageManager { getAllData: () => {} | Record; setItem: (key: string, value: string) => void; getItem: (key: string) => string; removeItem: (key: string) => void; resetAll: () => void; } declare class LocalStorageManage implements StorageManager { key: string; constructor(key?: string); getAllData(): any; resetAll(): void; setItem(key: string, value: string | T[] | T): void; getItem(key: string): T; removeItem(key: string): void; } export declare const localStorageManager: LocalStorageManage; export {};