import { type Config, type GetPaymentIntentInstruments, type PaymentInstrument, type PaymentIntent } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchPaymentIntentInstrumentsAction } from '../../types/index.js'; /** * Obtains all the payment intent instruments that will process on demand. * * @param getPaymentIntentInstruments - Get payment intent instruments client. * * @returns Thunk factory. */ declare const fetchPaymentIntentInstrumentsFactory: (getPaymentIntentInstruments: GetPaymentIntentInstruments) => (paymentIntentId: PaymentIntent['id'], config?: Config) => (dispatch: Dispatch) => Promise; export default fetchPaymentIntentInstrumentsFactory;