import * as React from 'react'; import TextAreaItemProps from './TextAreaItemPropsType'; export default class TextAreaItem extends React.Component { static defaultProps: { onChange(): void; onFocus(): void; onBlur(): void; onErrorClick(): void; clear: boolean; error: boolean; editable: boolean; rows: number; value: string; placeholder: string; count: number; keyboardType: string; autoHeight: boolean; last: boolean; }; constructor(props: any); onChange: (event: any) => void; onFocus: () => void; onBlur: () => void; onErrorClick: () => void; render(): JSX.Element; }