import type { PaymentAddress, PaymentShippingOption } from '@brandingbrand/react-native-payments'; import type { ShopifyCheckout } from '../ShopifyResponseTypes'; import type * as ShopifyTypes from '../customTypes'; /** * Converts Shopify shipping options to the paymentRequest details format * * @param checkout The shopify checkout object * @return The available shipping methods */ export declare const getShippingMethods: (checkout: ShopifyCheckout) => PaymentShippingOption[]; /** * Converts a paymentRequest shipping address to a shopify shipping address * * @param shippingAddress The shipping address input * @return The shopify formatted shipping address */ export declare const toShopifyAddress: (shippingAddress: PaymentAddress) => ShopifyTypes.ShopifyAddress; export declare const toMailingAddressInput: (address: PaymentAddress) => ShopifyTypes.ShopifyMailingAddressInput;