import type { ResetUserAction } from '../../types/index.js'; import type { StoreState } from '../../../types/index.js'; import type { ThunkDispatch } from 'redux-thunk'; /** * Reset user state and related entities to its initial value. * * @returns Dispatch reset user state and entities action. */ declare const resetUser: () => (dispatch: ThunkDispatch) => void; export default resetUser;