import { TextareaAutosizeProps } from 'react-textarea-autosize';
import { FormRoundedTypes, FormSizeTypes, FormColorTypes } from '../../../types/form-types';

declare const TextArea: import('react').ForwardRefExoticComponent<{
    label?: string;
    required?: boolean;
    helperText?: string;
    rounded?: FormRoundedTypes;
    error?: boolean;
    minRows?: number;
    size?: FormSizeTypes;
    color?: FormColorTypes;
    id?: string;
} & TextareaAutosizeProps & import('react').RefAttributes<HTMLTextAreaElement>>;
export default TextArea;
