type BeneficiaryAddress = {
    address_line1: string;
    address_line2: string;
    postal_zip_code: string;
    country_code: number | string;
    state_province: string;
    city_town: string;
};
export type { BeneficiaryAddress };
