import { type CheckoutOrder, type Config, type GetCheckoutOrderPaymentMethods, type PaymentMethods } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchCheckoutOrderPaymentMethodsAction } from '../../types/index.js'; /** * Method responsible for loading the payment methods for a checkout order. * * @param getCheckoutOrderPaymentMethods - Get payment methods client. * * @returns Thunk factory. */ declare const fetchCheckoutOrderPaymentMethodsFactory: (getCheckoutOrderPaymentMethods: GetCheckoutOrderPaymentMethods) => (checkoutOrderId: CheckoutOrder['id'], config?: Config) => (dispatch: Dispatch) => Promise; export default fetchCheckoutOrderPaymentMethodsFactory;