import LRUCache from 'lru-cache'; export declare namespace NSCacheSet { interface ICacheSet { New(name: string, opts?: LRUCache.Options): LRUCache; Get(name: string): LRUCache; Clear(): any; } class CacheSet implements ICacheSet { private _cacheStore; New(name: string, opts?: any): LRUCache; Get(name: string): LRUCache; Clear(): void; Remove(): void; } export function New(): CacheSet; export {}; }