import type { GetPaymentIntentInstruments } from './types/index.js'; /** * Obtains all the intent instruments that will process on demand. * * @param paymentIntentId - Id of the payment intent. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will resolve when the call to the endpoint finishes. */ declare const getPaymentIntentInstruments: GetPaymentIntentInstruments; export default getPaymentIntentInstruments;