import type { Dispatch } from 'redux'; import type { ResetPaymentIntentChargeAction } from '../types/index.js'; /** * Method responsible for resetting the payment intent charge state. */ declare const resetPaymentIntentCharge: () => (dispatch: Dispatch) => void; export default resetPaymentIntentCharge;