You need to write a reducer for that by hand - you can still use RTK everywhere else.
const reducer = combineReducers({
user,
post,
})
const resetAction = createAction('reset')
const resettableReducer = (state, action) => {
if (resetAction.match(action) {
return reducer(undefined, action)
}
return reducer(state, action)
}