import { Strategy } from 'passport-jwt'; import { AuthService } from '../auth.service'; import type { JwtPayload } from '../auth.interfaces'; declare const JwtStrategy_base: new (...args: any[]) => Strategy; export declare class JwtStrategy extends JwtStrategy_base { private readonly authService; constructor(authService: AuthService); validate(payload: JwtPayload): Promise; } export {};