The icons from material-ui-icon have no TS typings, so there's no way to import them without getting a (Could not find a declaration module for module FOOBAR) warning.
The only workaround is to use an old const AddIcon = require('material-ui-icons/Add').default;
Icons from the package should have a typing so TS doesn't generate a warning when importing them.
Importing them generates a TS warning, having to resort to require
import AddIcon from 'material-ui-icons/Add';
| Tech | Version |
|--------------|---------|
| Material-UI | 1.0-beta9 |
| React | 15 |
| browser | Chrome 61 |
| TS | 2.5.2 on strict mode |
In the currently released version there is only an index.d.ts. IMHO a new release should resolve this.
@oliviertassinari I noticed this to, but just imported from index for now. Do you have time to cut a new release?
@sebald I will cut a release this evening.

Published 馃帀
Most helpful comment
@sebald I will cut a release this evening.