import { TextareaHTMLAttributes } from 'react'; export type TextareaPrimitiveProps = TextareaHTMLAttributes & { hasError?: boolean; }; declare const Textarea: import("react").ForwardRefExoticComponent & { hasError?: boolean; } & import("react").RefAttributes>; export default Textarea;