import type { GetCheckoutOrderOperation } from './types/getCheckoutOrderOperation.types.js'; /** * Method responsible for fetching all the changes that occurred during the * operation. * * @param checkoutOrderId - Id of the checkout order. * @param operationId - Id of the checkout order operation. * @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 getCheckoutOrderOperation: GetCheckoutOrderOperation; export default getCheckoutOrderOperation;