import { type CheckoutOrder, type CheckoutOrderCharge, type Config, type PostCheckoutOrderCharge, type PostCheckoutOrderChargeData } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; /** * Method responsible for creating an intent charge. To be used by pay-by-link 1.5 * only. * * @param postCheckoutOrderCharge - Post checkout order charge client. * * @returns Thunk factory. */ declare const createCheckoutOrderChargeFactory: (postCheckoutOrderCharges: PostCheckoutOrderCharge) => (checkoutOrderId: CheckoutOrder['id'], data: PostCheckoutOrderChargeData, config?: Config) => (dispatch: Dispatch) => Promise; export default createCheckoutOrderChargeFactory;