import { IOrderCustomer } from '../interfaces';
import { OrdersCustomerPhoneEntity } from './customer-phone.entity';
export declare class OrderCustomerEntity implements IOrderCustomer {
    documentNumber: string;
    email: string;
    id: string;
    name: string;
    ordersCountOnMerchant: number;
    phone: OrdersCustomerPhoneEntity;
    picture: string;
    constructor(data?: Partial<OrderCustomerEntity>);
}
