import { TextareaAutosizeProps } from 'react-textarea-autosize';
import { FormRoundedTypes, FormSizeTypes, FormColorTypes } from '../../../types/form-types';
declare const TextArea: import('react').ForwardRefExoticComponent<{
    label?: string;
    required?: boolean;
    showRequired?: boolean;
    helperText?: string;
    roundedProp?: FormRoundedTypes;
    rounded?: FormRoundedTypes;
    error?: boolean;
    minRows?: number;
    sizeProp?: FormSizeTypes;
    size?: FormSizeTypes;
    colorProp?: FormColorTypes;
    color?: FormColorTypes;
    id?: string;
    showCharacterCount?: boolean;
} & TextareaAutosizeProps & import('react').RefAttributes<HTMLTextAreaElement>>;
export default TextArea;
