type BillingAddress = {
    id: number;
    address_line1: string;
    address_line2: string;
    postal_zip_code: string;
    state_region: string;
    city_town: string;
    country_code: string;
    verification_status: string;
};
export type { BillingAddress };
