import { Role } from "../../enums/roles.enum";
import { Address } from "./address.dto";
import { UserType } from "../../enums/user-types.enum";
export declare class User {
    _id?: string;
    id?: string;
    first_name: string;
    last_name: string;
    email: string;
    phone?: string;
    password: string;
    isAdmin?: boolean;
    picture?: string;
    balance: number;
    tenantId: string;
    refreshToken?: string;
    hasShippingAddress?: boolean;
    role: Role;
    status?: string;
    membership?: string;
    billingAddress: Address;
    shippingAddress: Address;
    parentId?: string;
    type?: UserType;
    rate?: number;
    session_location?: string;
}
