import { Address } from "./address";
export declare class BillingEntity {
    "address"?: Address | null;
    /**
    * The email address of the billing entity.
    */
    "email"?: string;
    /**
    * The unique identifier of the billing entity, for use as `billingEntityId` when creating an order.
    */
    "id"?: string;
    /**
    * The unique name of the billing entity.
    */
    "name"?: string;
    /**
    * The tax number of the billing entity.
    */
    "taxId"?: string;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
