import * as React from 'react'; import { P as PositionType } from '../commonTypes-BtF87PmG.mjs'; type LabelProps = { hint?: React.ReactNode; hintSide?: PositionType; htmlFor?: string; required?: boolean; }; interface TextareaProps extends React.TextareaHTMLAttributes { helperText?: any; isLoading?: boolean; /** The label of the input field */ label?: any; labelProps?: LabelProps; forceHideHelperText?: boolean; textareaProps?: React.TextareaHTMLAttributes; showCount?: boolean; countPosition?: "top" | "bottom"; classNames?: { textarea?: string; }; } declare const Textarea: React.ForwardRefExoticComponent>; export { Textarea, type TextareaProps };