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