///
///
import LRUCache from "lru-cache";
import { BaseCache } from "./base";
export declare class MemoryCache extends BaseCache {
cache: LRUCache;
constructor(options?: LRUCache.Options);
get(key: string, _req?: Express.Request): Buffer | undefined;
set(key: string, image: Buffer, _req?: Express.Request): void;
}