import React from 'react'; export interface TextareaProps extends React.TextareaHTMLAttributes { label?: string; error?: string; helperText?: string; animate?: boolean; } export declare const Textarea: React.ForwardRefExoticComponent>;