export declare class MemoryLRUCacher { private cache; opts: any; constructor(opts: any); get(key: string): any; set(key: string, data: any, opt?: any): any; delete(key: string): any; clear(): any; keys(): any; values(): any; }