import { type CheckoutOrder, type CheckoutOrderOperations, type Config, type GetCheckoutOrderOperations, type GetCheckoutOrderOperationsQuery } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Method responsible for obtaining the checkout order operations. * * @param getCheckoutOrderOperations - Get checkout operations client. * * @returns Thunk factory. */ declare const fetchCheckoutOrderOperationsFactory: (getCheckoutOrderOperations: GetCheckoutOrderOperations) => (checkoutOrderId: CheckoutOrder['id'], query?: GetCheckoutOrderOperationsQuery, config?: Config) => (dispatch: Dispatch) => Promise; export default fetchCheckoutOrderOperationsFactory;