import type { PutCheckoutOrderItemTags } from './types/index.js'; /** * Method responsible for updating the checkout item tags. * * @param checkoutOrderId - Universal identifier of the Checkout. * @param itemId - Universal identifier of the Item. * @param data - Array of strings representing the tags that you want to persist and/or add. * @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 putCheckoutOrderItemTags: PutCheckoutOrderItemTags; export default putCheckoutOrderItemTags;