export interface TextAreaProps {
  dataTestId?: string;
  ariaDescribedBy?: string;
  ariaLabelledBy?: string;
  autoSize?: boolean;
  className?: string;
  defaultValue?: any;
  dir?: "ltr" | "rtl" | "auto";
  disabled?: boolean;
  fillMode?: null | "flat" | "outline" | "solid";
  id?: string;
  name?: string;
  placeholder?: string;
  readOnly?: boolean;
  required?: boolean;
  rounded?: null | "small" | "medium" | "full" | "large";
  rows?: number;
  size?: null | "small" | "medium" | "large";
  style?: any;
  tabIndex?: number;
  valid?: boolean;
  validationMessage?: string;
  validityStyles?: boolean;
  value?: any;
}
