///
declare const Textarea: import("react").ForwardRefExoticComponent & {
label?: string | undefined;
placeholder?: string | undefined;
error?: boolean | undefined;
onClear?: (() => void) | undefined;
isClearable?: boolean | undefined;
loading?: boolean | undefined;
hasValue?: boolean | undefined;
labelProps?: any;
hideLabel?: boolean | undefined;
} & import("react").RefAttributes>;
export declare type TextareaProps = React.InputHTMLAttributes & {
label?: string;
placeholder?: string;
error?: boolean;
onClear?: () => void;
isClearable?: boolean;
loading?: boolean;
hasValue?: boolean;
labelProps?: any;
hideLabel?: boolean;
};
export default Textarea;