import type { GetCheckoutSessionCharge } from './types/getCheckoutSessionCharge.types.js'; /** * Method responsible for getting the checkout session charge. * * @param checkoutSessionId - Id of the checkout session to get the charge from. * @param chargeId - Alphanumeric guid of the 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 getCheckoutSessionCharge: GetCheckoutSessionCharge; export default getCheckoutSessionCharge;