import { ConfigService } from '@nestjs/config'; import { Strategy } from 'passport-jwt'; import { AuthService } from '../auth.service'; declare const WsJwtStrategy_base: new (...args: [opt: import("passport-jwt").StrategyOptions] | [opt: import("passport-jwt").StrategyOptions]) => Strategy & { validate(...args: any[]): unknown; }; export declare class WsJwtStrategy extends WsJwtStrategy_base { private readonly authService; private readonly configService; constructor(authService: AuthService, configService: ConfigService); validate(payload: any, done: any): Promise; } export {};