import type { Dispatch } from 'redux'; import type { ResetExchangesStateAction } from '../index.js'; /** * Reset exchanges state and related entities to its initial value. * * @returns - Thunk. */ declare const resetExchanges: () => (dispatch: Dispatch) => void; export default resetExchanges;