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