import { type CheckoutOrder, type CheckoutOrderContext, type Config, type GetCheckoutOrderContext } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Method responsible for getting the checkout order context. * * @param getCheckoutOrderContext - Get checkout order context client. * * @returns Thunk factory. */ declare const fetchCheckoutOrderContextFactory: (getCheckoutOrderContext: GetCheckoutOrderContext) => (checkoutOrderId: CheckoutOrder['id'], contextId: CheckoutOrderContext['id'], config?: Config) => (dispatch: Dispatch) => Promise; export default fetchCheckoutOrderContextFactory;