export class LRUCache { constructor(max?: number); max: number; map: Map; get(key: any): any; set(key: any, val: any): this; get size(): number; clear(): void; } export const parseCache: LRUCache; export const botCache: LRUCache;