import * as react from 'react'; import { TextareaHTMLAttributes } from 'react'; import { a as InputBaseProps, I as InputAffixProps } from './inputs.types-vl3PAc4q.js'; import './types-8Sv0rCjw.js'; interface TextareaProps extends InputBaseProps, InputAffixProps, Omit, "size" | "prefix"> { autoResize?: boolean; minRows?: number; maxRows?: number; onValueChange?: (value: string) => void; } declare const Textarea: react.ForwardRefExoticComponent>; export { Textarea, type TextareaProps };