import { UsersService } from '../../users/users.service';
declare const RefreshTokenStrategy_base: new (...args: any) => any;
export declare class RefreshTokenStrategy extends RefreshTokenStrategy_base {
    private usersService;
    constructor(usersService: UsersService);
    validate(req: Request, payload: any): Promise<{
        refreshToken: any;
        name: string;
        id: number;
        posts: import("../../entities/post.entity").Post[];
        orders: import("../../entities/order.entity").Order[];
        email: string;
        phone: string;
        roles: import("../../entities/role.entity").Role[];
        company_name: string;
        address: string;
        is_active: boolean;
        refreshTokens: import("../../entities/refresh-token.entity").RefreshToken[];
        hashPassword: () => Promise<void>;
        hasRole: (roleName: string) => boolean;
        hasAnyRole: (roleNames: string[]) => boolean;
    }>;
}
export {};
