import { Strategy, VerifiedCallback } from "passport-jwt"; import { AuthService } from "../auth.service"; import { JwtModuleOptions } from "../auth.types"; declare const JwtStrategy_base: new (...args: any[]) => Strategy; declare class JwtStrategy extends JwtStrategy_base { private jwtOptions; private authService; constructor(jwtOptions: JwtModuleOptions, authService: AuthService); validate(payload: any, done: VerifiedCallback): Promise; } export { JwtStrategy };