import { AddressEntity, CoordsEntity } from '../../general';
import { OrderTotalEntity } from '../../order';
import { IVoucherCustomer } from '../interfaces';
export declare class VoucherCustomerEntity implements IVoucherCustomer {
    customerId: string;
    cords: CoordsEntity;
    address: AddressEntity;
    phoneNumber: string;
    meta: string;
    id: string;
    itensCount: number;
    total: OrderTotalEntity;
    averageAmount: number;
    createdAt: Date;
    updatedAt: Date;
    constructor(data?: Partial<VoucherCustomerEntity>);
}
