Type error components post purchase extension

Hello, i use a post purchase extension with typescript and I get a type error with all the components from “shopify/post-purchase-ui-extensions-react”

:

'TextBlock' cannot be used as a JSX component.
  Its element type 'ReactElement<any, any> | Component<ReactPropsFromRemoteComponentType<RemoteComponentType<"TextBlock", TextBlockProps, true>>, any, any> | null' is not a valid JSX element.
    Type 'Component<ReactPropsFromRemoteComponentType<RemoteComponentType<"TextBlock", TextBlockProps, true>>, any, any>' is not assignable to type 'Element | ElementClass | null'.
      Type 'Component<ReactPropsFromRemoteComponentType<RemoteComponentType<"TextBlock", TextBlockProps, true>>, any, any>' is not assignable to type 'ElementClass'.
Type 'import("c:/Users/xx/Documents/Code/shopify/xx/extensions/my-post-purchase-ui-extension/node_modules/@types/react/index").ReactNode' is not assignable to type 'import("c:/Users/xx/Documents/Code/shopify/xx/node_modules/@types/react/index").ReactNode'.
            Type '{}' is not assignable to type 'ReactNode'

here my package.json of the extension :

{
  "name": "my-post-purchase-ui-extension",
  "private": true,
  "version": "1.0.0",
  "main": "dist/main.js",
  "license": "UNLICENSED",
  "dependencies": {
    "@remote-ui/react": "^4.5.14",
    "@shopify/post-purchase-ui-extensions": "^0.13.5",
    "@shopify/post-purchase-ui-extensions-react": "^0.13.2",
    "draftjs-to-html": "^0.9.1",
    "html-react-parser": "^5.1.18",
    "react": "^17.0.0"
  },
  "devDependencies": {
    "@types/react": "^17.0.0"
  }
}

and the package.json of the application :

  "dependencies": {
    "@prisma/client": "^5.22.0",
    "@remix-run/dev": "^2.7.1",
    "@remix-run/node": "^2.7.1",
    "@remix-run/react": "^2.7.1",
    "@remix-run/serve": "^2.7.1",
    "@shopify/app-bridge": "^3.7.10",
    "@shopify/app-bridge-react": "^4.1.2",
    "@shopify/polaris": "^12.0.0",
    "@shopify/shopify-api": "^11.8.1",
    "@shopify/shopify-app-remix": "^3.5.1",
    "@shopify/shopify-app-session-storage-mongodb": "^4.0.9",
    "@shopify/shopify-app-session-storage-prisma": "^5.2.0",
    "autoprefixer": "^10.4.20",
    "isbot": "^5.1.0",
    "jsonwebtoken": "^9.0.2",
    "mongodb": "^6.12.0",
    "prisma": "^5.11.0",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "tailwindcss": "^3.4.15",
    "uuid": "^10.0.0",
    "vite-tsconfig-paths": "^4.3.1"
  },
  "devDependencies": {
    "@remix-run/eslint-config": "^2.7.1",
    "@shopify/api-codegen-preset": "^1.0.1",
    "@shopify/app-bridge-types": "^0.0.16",
    "@shopify/prettier-plugin-liquid": "^1.5.2",
    "@types/eslint": "^8.40.0",
    "@types/jsonwebtoken": "^9.0.8",
    "@types/node": "^20.6.3",
    "@types/react": "^18.2.31",
    "@types/react-dom": "^18.2.14",
    "@types/uuid": "^10.0.0",
    "eslint": "^8.42.0",
    "eslint-config-prettier": "^9.1.0",
    "postcss": "^8.4.49",
    "prettier": "^3.3.3",
    "typescript": "^5.2.2",
    "vite": "^5.1.3"
  },
  "workspaces": [
    "extensions/*"
  ],

I tried to delete the node modules folder and update the package json with the same react / react type version to reinstall and that’s not working. Do you have any ideas ? Thank you !