import { ICoords } from '../../../general';
export interface IOrdersCustomerPhone {
    description: string;
    localizer: string;
    localizerExpiration: string;
    number: string;
}
export interface IOrderCustomerV3 {
    documentNumber: string;
    email: string;
    id: string;
    name: string;
    ordersCountOnMerchant: number;
    phone: IOrdersCustomerPhone;
    picture: string;
    birthday: Date | null;
    coords: ICoords | null;
}
