import { default as React, FunctionComponent, FocusEvent } from 'react'; import { BasicComponent } from '../../utils/typings'; export interface TextAreaProps extends BasicComponent { value: string; defaultValue: string; showCount: boolean; maxLength: number; rows: number; placeholder: string; readOnly: boolean; disabled: boolean; autoSize: boolean; onChange: (value: string) => void; onBlur: (event: FocusEvent) => void; onFocus: (event: FocusEvent) => void; } export declare const TextArea: FunctionComponent & Omit, 'onChange' | 'onBlur' | 'onFocus'>>;