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