import { Strategy } from 'passport-jwt'; import { AdminAuthService } from '../admin-auth.service'; import { JwtPayload } from '../auth.interfaces'; declare const AdminJwtStrategy_base: new (...args: any[]) => Strategy; export declare class AdminJwtStrategy extends AdminJwtStrategy_base { private readonly adminAuthService; constructor(adminAuthService: AdminAuthService); validate(payload: JwtPayload): Promise; } export {};