import * as React from 'react'; interface PropTypes { type?: React.HTMLInputTypeAttribute; name: string; value: string; placeholder?: string; maxLength?: number; onChange: React.ChangeEventHandler; onBlur?: React.FocusEventHandler; } declare function TextField({ type, name, value, placeholder, maxLength, onChange, onBlur }: PropTypes): JSX.Element; declare namespace TextField { var defaultProps: { type: string; placeholder: string; maxLength: number; onBlur: () => void; }; } export default TextField;