import { AuthService } from './auth.service'; import { ConfigService } from '../config/config.service'; declare const JwtStrategy_base: new (...args: any[]) => any; export declare class JwtStrategy extends JwtStrategy_base { private readonly authService; constructor(configService: ConfigService, authService: AuthService); validate(payload: any): Promise; } export {};