declare enum CustomerAddressType {
    BILLING = "BILLING",
    SHIPPING = "SHIPPING",
    BOTH = "BOTH"
}
export { CustomerAddressType };
