import { LRU } from 'tiny-lru';
export declare type LRUCache = LRU<any>;
export declare function createLruCache(max?: number, ttl?: number): LRUCache;
