import React, { TextareaHTMLAttributes, ChangeEvent } from 'react'; import { WithStatusProps } from '../../system/HOC'; export type TextAreaProps = TextareaHTMLAttributes & { onChange?: (e?: ChangeEvent) => void; label?: string; helperText?: string; } & WithStatusProps; export declare const TextArea: React.ForwardRefExoticComponent & { onChange?: ((e?: ChangeEvent) => void) | undefined; label?: string | undefined; helperText?: string | undefined; } & WithStatusProps & React.RefAttributes>;