import type { GetCheckoutOrderOperations } from './types/getCheckoutOrderOperations.types.js'; /** * Method responsible for fetching all operations performed in the order. * * @param checkoutOrderId - Universal identifier of the Order. * @param query - Query params. * @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 getCheckoutOrderOperations: GetCheckoutOrderOperations; export default getCheckoutOrderOperations;