import * as react from 'react'; import { TextareaHTMLAttributes } from 'react'; interface TextareaProps extends TextareaHTMLAttributes { label?: string; error?: string; } declare const Textarea: react.ForwardRefExoticComponent>; export { Textarea, type TextareaProps };