In typeScript you should install @types/react and while extending the React.Component you need to specify the props and state types.
Here is the example
import * as React from 'react'
interface Props {
... // your props validation
}
interface State {
... // state types
}
class FormExample extends React.Component<Props, State> {... }