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