import type { Dispatch } from 'redux'; import type { ResetUserClosetsStateAction } from '../types/index.js'; /** * Reset user closets state to its initial value. * * @returns - Thunk. */ declare const resetUserClosets: () => (dispatch: Dispatch) => void; export default resetUserClosets;