All React Material-UI components I am importing are showing error that says "JSX element type 'Tooltip' does not have any construct or call signatures" when used in react's render method.
I would expect not to see the error from title for Components I am rendering in my react render method like so:

I am seeing the above errors as well as intellisense errors like in the following gif link.
https://gyazo.com/6d8b895bae515feadf754556e1ff67d4
This was done in the following repo: https://github.com/ShawnCholeva/matierialui-import-issue
The code editor used was VSCode version 1.24
Refer to yarn.lock file for specific versions used of each package
This may not be the correct place for this issue, I have just noticed the following:
How should this be handled, as I am not entirely sure now?
May be worth noting that I am also not seeing the intellisense error or console error when importing these react-modules from another library:
import { Row, Col } from 'react-flexbox-grid';
this is related to changes in typescript 2.9.1 and is fixed in 2.9.2 (not released yet).
@Bessonov Thanks for linking the related issue! I'm closing. The fact that it's not working with react-flexbox-grid can only suggest that the issue is broader to Material-UI. Typescript regression is a good lead.
Is it related to typescript 2.9.1? I downgraded to 2.8.3 and still have the error.
@benpolinsky clear caches or like. Had same error and downgrade to 2.8.3 helped me.
I'm having the same issue, and in the typescript repo they recommend a solution that for material-ui usage would imply importing components like this:
import { Button } from '@material-ui/core';
instead of the recommended:
import Button from '@material-ui/core/Button';
I tried it and it does remove the typescript error, but I wonder if using this other import format would have implications in the bundle size, in the absence of very advanced tree-shaking a-la web pack 4 (which I'm not sure I am using, because I'm using CRA).
Update: I forgot to add the reference to where this is recommended as a solution: Microsoft/TypeScript-React-Starter#44
I'm having the same issue with TypeScript 2.9.2
We use 2.9.2 now and doesn't have any issue.
@Pietrofxq not sure you are using vscode, but I ran into an issue where I upgraded my package.json to pull in 2.9.2, but I had 2.9.1 installed globally. So at the bottom right of the vscode window I had to tell it to use the 2.9.2 version from project modules or upgrade my locally global typescript to 2.9.2 also
Most helpful comment
We use 2.9.2 now and doesn't have any issue.