import React from 'react'; import { FieldProps, TextAreaProps } from '../types'; declare type Props = FieldProps & TextAreaProps; export declare function TextArea({ autoComplete, disabled, label, id, name, placeholder, required, showCharCount, width, maxChar, minChar, hasError, errorText, touched, assistText, optionalText, variant, onChange, onKeyUp, onBlur, onFocus, value, ...props }: Props): React.JSX.Element; export {};