import React from "react"; import "../src/index.js"; import type * as TextAreaComponentTypes from "../src/index"; export interface TextAreaComponentProps { /** undefined */ isautofocus?: boolean | undefined; /** undefined */ isdisabled?: boolean | undefined; /** undefined */ isreadonly?: boolean | undefined; /** undefined */ isrequired?: boolean | undefined; /** undefined */ canresize?: boolean | undefined; /** undefined */ label?: string | undefined; /** undefined */ textareaid?: string | undefined; /** undefined */ textareaname?: string | undefined; /** undefined */ textarearows?: number | undefined; /** undefined */ textareacols?: number | undefined; /** undefined */ textareaautocomplete?: TextAreaComponentTypes.AutoComplete | undefined; /** undefined */ labelpartattribute?: string | undefined; /** undefined */ containerpartattribute?: string | undefined; /** undefined */ textareapartattribute?: string | undefined; /** undefined */ formid?: string | undefined; /** undefined */ textareamaxlength?: number | undefined; /** undefined */ textareaminlength?: number | undefined; /** undefined */ textareaplaceholder?: string | undefined; /** undefined */ changehandlername?: string | undefined; /** Defines a unique identifier (ID) which must be unique in the whole document. Its purpose is to identify the element when linking (using a fragment identifier), scripting, or styling (with CSS). */ id?: string; /** A space-separated list of the classes of the element. Classes allows CSS and JavaScript to select and access specific elements via the class selectors or functions like the method `Document.getElementsByClassName()`. */ className?: string; /** Contains CSS styling declarations to be applied to the element. Note that it is recommended for styles to be defined in a separate file or files. This attribute and the