import { ConfigService } from '@nestjs/config';
import { UsersService } from 'src/users/users.service';
declare const JwtStrategy_base: new (...args: any[]) => any;
export declare class JwtStrategy extends JwtStrategy_base {
    private configService;
    private userService;
    private readonly logger;
    constructor(configService: ConfigService, userService: UsersService);
    validate(payload: any): Promise<{
        userId: any;
        email: any;
        businessId: any;
    }>;
}
export {};
