import type { PatchCheckoutOrder } from './types/index.js'; /** * Method responsible for changing the checkout information. This is used for any * type of changes to the checkout object. This also replaces the deprecated * putShippingOption function. * * @param checkoutOrderId - Universal identifier of the Checkout. * @param data - Request data. * @param config - Custom configurations to send to the client instance (axios). In this case is truly * recommended to update your axios config to your new shipping or billing address, * like this: * const config = \{ * headers:\{ * 'Accept-Language': cultureCode, * 'FF-Country': countryCode, * 'FF-Currency': currencyCode * \} * \}. * * @returns Promise that will resolve when the call to the endpoint finishes. */ declare const patchCheckoutOrder: PatchCheckoutOrder; export default patchCheckoutOrder;