import { RedisCache } from 'cache-manager-redis-yet'; import { Strategy, StrategyOptions } from 'passport-jwt'; import { AppConfig } from '../app.config'; declare const JwtStrategy_base: new (...args: any[]) => Strategy; export declare class JwtStrategy extends JwtStrategy_base { private readonly cache; private readonly appConfig; strategyOptions: StrategyOptions; constructor(cache: RedisCache, appConfig: AppConfig); validate(payload: any): Promise; } export {};