import React, { TextareaHTMLAttributes } from "react"; import { OverrideClassName } from "@kaizen/component-base"; export interface TextAreaProps extends OverrideClassName> { textAreaRef?: React.RefObject; status?: "default" | "error" | "caution"; autogrow?: boolean; reversed?: boolean; /** * **Deprecated:** Use test id compatible with your testing library (eg. `data-testid`). * @deprecated */ automationId?: string; } /** * @deprecated Please use the same component from `@kaizen/components` */ export declare const TextArea: { ({ textAreaRef: propsTextAreaRef, status, autogrow, reversed, automationId, rows, defaultValue, value, disabled, onChange: propsOnChange, ...restProps }: TextAreaProps): JSX.Element; displayName: string; };