import React from 'react';
export declare const StyledTextArea: import("styled-components").StyledComponent<"textarea", import("styled-components").DefaultTheme, {}, never>;
declare const TextArea: React.ForwardRefExoticComponent<{
    className?: string | undefined;
    borderless?: boolean | undefined;
    hasError?: boolean | undefined;
} & {
    value?: string | undefined;
} & Pick<React.TextareaHTMLAttributes<HTMLTextAreaElement>, "name" | "autoComplete" | "autoFocus" | "disabled" | "maxLength" | "minLength" | "placeholder" | "readOnly" | "rows" | "onChange" | "onFocus" | "onBlur" | "onClick"> & React.RefAttributes<HTMLTextAreaElement>>;
export default TextArea;
