import type { GetCheckoutOrderDeliveryBundles } from './types/index.js'; /** * Obtains the delivery bundles available for the specified checkout order. * * @param checkoutOrderId - Identifier of the checkout order. * @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 getCheckoutOrderDeliveryBundles: GetCheckoutOrderDeliveryBundles; export default getCheckoutOrderDeliveryBundles;