import type { Dispatch } from 'redux'; import type { ResetPaymentsAction } from '../types/index.js'; /** * Reset payments state and related entities to its initial value. */ declare const resetPayments: () => (dispatch: Dispatch) => void; export default resetPayments;