import * as React from 'react'; import * as module from './module'; import './index.scss'; export default class Input extends React.Component { static defaultProps: module.PropsInterface; state: module.StateInterface; constructor(props: any); componentWillMount(): void; handleInputChange(event: any): void; render(): JSX.Element; }