export declare class LocalStore { static set(key: T, data: any[T]): void; static remove(key: T): void; static get(key: T): any[T]; static clear(): void; }