import type { GetCheckoutOrder } from './types/index.js'; /** * Method responsible for loading the checkout. * * @param checkoutOrderId - Universal identifier of the Checkout. * @param query - Query param "fields" with search criteria for getting the order. * Possible values (string comma separated): * - checkoutOrder * - paymentMethods * - shippingOptions * - deliveryBundles * - userPaymentTokens * @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 getCheckoutOrder: GetCheckoutOrder; export default getCheckoutOrder;