import type { GetPaymentIntentCharge } from './types/index.js'; /** * Gets the payment intent charge. * * @param paymentIntentId - Id of the payment intent. * @param chargeId - Id of the intent charge. * @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 getPaymentIntentCharge: GetPaymentIntentCharge; export default getPaymentIntentCharge;