import type { GetCheckoutOrderPaymentMethods } from './types/index.js'; /** * Method responsible for fetching the available payment methods for a checkout order. * * @param checkoutOrderId - Universal identifier of the order. * @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 getCheckoutOrderPaymentMethods: GetCheckoutOrderPaymentMethods; export default getCheckoutOrderPaymentMethods;