import { type CheckoutOrder, type CheckoutOrderCharge, type Config, type GetCheckoutOrderCharge } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchCheckoutOrderChargeAction } from '../../types/index.js'; /** * Method responsible for getting the order charge. * * @param getCheckoutOrderCharge - Get charges client. * * @returns Thunk factory. */ declare const fetchCheckoutOrderChargeFactory: (getCheckoutOrderCharge: GetCheckoutOrderCharge) => (checkoutOrderId: CheckoutOrder['id'], chargeId: CheckoutOrderCharge['id'], config?: Config) => (dispatch: Dispatch) => Promise; export default fetchCheckoutOrderChargeFactory;