/// import { NestMiddleware } from "@nestjs/common"; import { NextFunction, Request } from "express"; import { JwtStrategy } from "../shared/jwt.strategy"; import { JwtService } from "@nestjs/jwt"; export declare class JwtAuthMiddleware implements NestMiddleware { private jwtStrategy; private jwtService; constructor(jwtStrategy: JwtStrategy, jwtService: JwtService); use(req: Request, res: Response, next: NextFunction): Promise; }