import Joi from 'joi'; import { Address } from './address'; /** * @description This model represents information for who is being billed */ export declare class BillTo extends Address { /** @description The email address of the person being billed */ email?: string; } export declare const BillToSchema: Joi.ObjectSchema;