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