import type React from "react"; import type { StyledTextareaProps } from "./StyledTextarea"; type TextareaProps = StyledTextareaProps & { className?: string; id?: string; disabled?: boolean; errorMessage?: string; error?: boolean; errorList?: string[]; required?: boolean; labelText?: string; helpText?: React.ReactNode; requirementText?: string; rows?: number; isResizeable?: boolean; }; declare const Textarea: React.ForwardRefExoticComponent & React.RefAttributes>; export default Textarea;