import type { DeleteCheckoutOrderItem } from './types/deleteCheckoutOrderItem.types.js'; /** * Method responsible for deleting a checkout order item * * @param checkoutOrderId - Universal identifier of the checkout order. * @param itemId - Checkout order item identifier. * @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 deleteCheckoutOrderItem: DeleteCheckoutOrderItem; export default deleteCheckoutOrderItem;