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