import { Strategy } from 'passport-jwt'; import { AuthModuleOptions, AuthUserSerializationService } from '../auth.type'; declare const JwtStrategy_base: new (...args: any[]) => Strategy; export declare class JwtStrategy extends JwtStrategy_base { private authOptions; private userSerializationService; constructor(authOptions: AuthModuleOptions, userSerializationService: AuthUserSerializationService); validate(user: any): Promise; } export {};