import * as React from 'react'; export interface TextInputProps extends React.HTMLAttributes { } export class TextInput extends React.Component{ static defaultProps: Partial = { type: 'text' }; render() { return ; } }