import type { PostCheckoutSessionCharge } from './types/postCheckoutSessionCharge.types.js'; /** * Method responsible for creating a checkout session charge. * * @param checkoutSessionId - Id of the checkout session to charge. * @param data - Request data. * @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 postCheckoutSessionCharge: PostCheckoutSessionCharge; export default postCheckoutSessionCharge;