import type { PutCheckoutOrderTags } from './types/index.js'; /** * Method responsible for adding tags information. * * @param checkoutOrderId - Universal identifier of the Checkout. * @param data - Array of strings representing the tags you want to 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 putCheckoutOrderTags: PutCheckoutOrderTags; export default putCheckoutOrderTags;