import { ExecutionContext, NestMiddleware } from "@nestjs/common"; import { Request } from "express"; import { JwtStrategy } from "./jwt.strategy"; export declare class JwtAuthMiddleware implements NestMiddleware { private jwtStrategy; constructor(jwtStrategy: JwtStrategy); use(req: Request, res: any, next: (error?: any) => void): void; getRequest(context: ExecutionContext): any; }