import { type Config, type GetPaymentIntentCharge, type PaymentIntent, type PaymentIntentCharge } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchPaymentIntentChargeAction } from '../../types/index.js'; /** * Gets the payment intent charge. * * @param getPaymentIntentCharge - Get payment intent charge client. * * @returns Thunk factory. */ declare const fetchPaymentIntentChargeFactory: (getPaymentIntentCharge: GetPaymentIntentCharge) => (intentId: PaymentIntent['id'], chargeId: string, config?: Config) => (dispatch: Dispatch) => Promise; export default fetchPaymentIntentChargeFactory;