import { Ref, RefAttributes } from "react"; import { DOMProps } from "@react-types/shared"; import { ForwardedRefComponent } from "../../types/components"; export declare type TextAreaInputElementType = HTMLTextAreaElement; export interface InteractionStateProps { isFocusVisible?: boolean; isSelected?: boolean; isDisabled?: boolean; isHovered?: boolean; } export interface TextAreaInputProps extends DOMProps, InteractionStateProps, RefAttributes { className?: string; } export declare type TextAreaInputRef = Ref; declare const TextAreaInput: ForwardedRefComponent; export { TextAreaInput };