import { type Config, type PaymentIntent, type PostPaymentIntentInstrument, type PostPaymentIntentInstrumentData, type PostPaymentIntentInstrumentResponse } from '@farfetch/blackout-client'; import type { CreatePaymentIntentInstrumentAction } from '../../types/index.js'; import type { Dispatch } from 'redux'; /** * Method responsible for creating an instrument. * * @param postPaymentIntentInstrument - Post instruments client. * * @returns Thunk factory. */ declare const createPaymentIntentInstrumentFactory: (postPaymentIntentInstrument: PostPaymentIntentInstrument) => (paymentIntentId: PaymentIntent['id'], data: PostPaymentIntentInstrumentData, config?: Config) => (dispatch: Dispatch) => Promise; export default createPaymentIntentInstrumentFactory;