declare module "tiny-lru" { class Lru { constructor(max?: number, ttl?: number); public has(key: string): boolean; public get(key: string): T | undefined; public set(key: string, value: T, bypass?: boolean): this; public clear(): this; public delete(key: string): this; public evict(): this; public keys(): string[]; } export default function factory(max?: number, ttl?: number): Lru; }