import { type CheckoutOrder, type CheckoutOrderOperation, type Config, type GetCheckoutOrderOperation } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Method responsible for obtaining the checkout order operation. * * @param getCheckoutOperation - Get checkout operation client. * * @returns Thunk factory. */ declare const fetchCheckoutOrderOperationFactory: (getCheckoutOperation: GetCheckoutOrderOperation) => (checkoutOrderId: CheckoutOrder['id'], operationId: CheckoutOrderOperation['id'], config?: Config) => (dispatch: Dispatch) => Promise; export default fetchCheckoutOrderOperationFactory;