type TextAreaProps = { id: string; label: string; value: string; classNames?: { textarea?: string; label?: string; container?: string; }; handleInputChange: (e: any) => void; } & JSX.InputHTMLAttributes; declare function TextArea(props: TextAreaProps): import("react/jsx-runtime").JSX.Element; export default TextArea;