import { ClassNameOrFunction, ContextValue, StyleRenderProps } from './utils'; import { HoverEvents } from '@react-types/shared'; import { InputRenderProps } from './Input'; import React, { TextareaHTMLAttributes } from 'react'; export interface TextAreaProps extends Omit, 'className' | 'style'>, HoverEvents, StyleRenderProps { /** * The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state. * @default 'react-aria-TextArea' */ className?: ClassNameOrFunction; } export declare const TextAreaContext: React.Context>; /** * A textarea allows a user to input mult-line text. */ export declare const TextArea: React.ForwardRefExoticComponent>;