I faced the same issue, for me it was just solved by adding AppDispatch to the type of useDispatch hook;
const dispatch = useDispatch<AppDispatch>();
useEffect(() => {
dispatch(getUsers());
}, []);
getUsers() was my createAsyncThunk function