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