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