import { ConfigService } from '@nestjs/config';
import { AdminAuthService } from '../admin-auth.service';
declare const JwtStrategy_base: new (...args: any[]) => any;
export declare class JwtStrategy extends JwtStrategy_base {
    private configService;
    private authService;
    constructor(configService: ConfigService, authService: AdminAuthService);
    validate(payload: any): Promise<{
        id: any;
        phone: any;
        role: any;
    }>;
}
export {};
