import { ICache, Cacheable } from './shared'; export declare class LocalStorageCache implements ICache { set(key: string, entry: T): void; get(key: string): T; remove(key: string): void; allKeys(): string[]; }