import { Strategy } from 'passport-jwt';
import { ConfigService } from '@nestjs/config';
import { ClsService } from 'nestjs-cls';
import { AuthService, JwtPayload } from '../auth.service';
declare const JwtStrategy_base: new (...args: [opt: import("passport-jwt").StrategyOptionsWithRequest] | [opt: import("passport-jwt").StrategyOptionsWithoutRequest]) => Strategy & {
    validate(...args: any[]): unknown;
};
export declare class JwtStrategy extends JwtStrategy_base {
    private readonly authService;
    private readonly cls;
    constructor(configService: ConfigService, authService: AuthService, cls: ClsService);
    validate(payload: JwtPayload): Promise<{
        id: string;
        email: string;
        name: string;
        tenant_id: string;
        role: import("../../entities").RoleEntity;
    }>;
}
export {};
