import { type Config, type DeletePaymentIntentInstrument, type PaymentInstrument, type PaymentIntent } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { RemovePaymentIntentInstrumentAction } from '../../types/index.js'; /** * Action responsible for deleting a payment instrument from a payment intent. * * @param deletePaymentIntentInstrument - Delete payment intent instrument client. * * @returns Thunk factory. */ declare const removePaymentIntentInstrumentFactory: (deletePaymentIntentInstrument: DeletePaymentIntentInstrument) => (paymentIntentId: PaymentIntent['id'], paymentInstrumentId: PaymentInstrument['id'], config?: Config) => (dispatch: Dispatch) => Promise; export default removePaymentIntentInstrumentFactory;