import { Ref } from '@innet/dom'; import { type InputProps } from '../Input'; export interface TextAreaProps extends Omit { resize?: boolean | 'auto' | 'none' | 'both' | 'horizontal' | 'vertical' | 'inherit'; rows?: number; inputRef?: Ref; } export declare function TextArea({ resize, rows, style, inputRef, ...props }?: TextAreaProps): import("@innet/jsx").JSXElement;