import type { GetCheckoutOrderDetails } from './types/index.js'; /** * Method responsible for loading the checkout details. These are used for the * order confirmation. * * @param checkoutOrderId - Universal identifier of the Checkout. * @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 getCheckoutOrderDetails: GetCheckoutOrderDetails; export default getCheckoutOrderDetails;