import type { ICache, ICacheStore } from './interface'; export declare class LocalStorageCacheStore implements ICacheStore { get(key: string): ICache | null; set(key: string, value: ICache): boolean; remove(key: string): void; }