import { IncomingMessage as Request } from 'http';
import { LRUResponse } from './types';
import LRU from 'quick-lru';
export declare const lruSend: (lruInstance?: LRU<string, unknown>) => (req: Request, res: LRUResponse, next: () => void) => void;
