import type { GetPaymentIntent } from './types/index.js'; /** * Gets the payment intent details. * * @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 getPaymentIntent: GetPaymentIntent; export default getPaymentIntent;