/* eslint-disable */
import * as Types from '@graphcommerce/graphql-mesh/.mesh';

export type BillingAddressFragment = { id: string, billing_address?: { __typename: 'BillingCartAddress', firstname: string, lastname: string, city: string, company?: string | null, postcode?: string | null, street: Array<string | null>, telephone?: string | null, country: { code: string, label: string }, region?: { code?: string | null, label?: string | null, region_id?: number | null } | null } | null };
