import type { PatchCheckoutOrderItem } from './types/patchCheckoutOrderItem.types.js'; /** * Method responsible for updating a checkout order item * * @remarks * * Notes: * - Currently only supports the order item quantity update. * * @param checkoutOrderId - Universal identifier of the checkout order. * @param itemId - Checkout order item identifier. * @param data - Order item properties to update * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will resolve when the call to the endpoint finishes. */ declare const patchCheckoutOrderItem: PatchCheckoutOrderItem; export default patchCheckoutOrderItem;