React 18 Update causing type issues

We are trying to update to react 18 from 17, has anyone had any issues with incorrect types?

For example I am getting the following typescript error

'InstantSearch' cannot be used as a JSX component.
  Its instance type 'InstantSearch' is not a valid JSX element.

I have the following versions:

“react-instantsearch-core”: “6.39.0”,
“react-instantsearch-dom”: “6.39.0”,
@types/react”: “18.0.28”,
@types/react-dom”: “18.0.11”,
@types/react-instantsearch-core”: “6.26.3”,
@types/react-instantsearch-dom”: “6.12.3”,

Has anyone else experienced this?

The React IntantSearch Hooks libraries have a new entrypoint. You should replace react-instantsearch-dom with ‘react-instantsearch-hooks-web’`

import { InstantSearch } from 'react-instantsearch-hooks-web';