import { LRUCache } from "lru-cache"; type LRUCacheOptions = LRUCache.OptionsBase & Partial> & Partial> & Partial>; export interface LRUDriverOptions extends LRUCacheOptions { } declare const _default: (opts: LRUDriverOptions | undefined) => import("..").Driver>; export default _default;