export interface BillingAddress {
    street: string;
    number: string;
    city: string;
    state: string;
    zip_code: string;
    country: string;
    phone_number?: string;
}
export interface UserData {
    billing_address: BillingAddress;
}
