import { NestMiddleware } from '@nestjs/common'; import { Request, Response } from 'express'; export declare class RequestMiddleware implements NestMiddleware { use(req: Request, _res: Response, next: () => void): void; }