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