import type { PatchCheckoutOrderItems } from './types/index.js'; /** * Method responsible for adding, editing and removing gift messages to the current * checkout order. * * @param checkoutOrderId - Universal identifier of the Checkout. * @param data - Array of objects containing the checkout order id and the checkout item patch * document reflecting the changes to be made. * @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 patchCheckoutOrderItems: PatchCheckoutOrderItems; export default patchCheckoutOrderItems;