import * as react from 'react'; import { TextareaHTMLAttributes } from 'react'; import { a as InputBaseProps, I as InputAffixProps } from './inputs.types-CJbAS14j.cjs'; import './types-8Sv0rCjw.cjs'; 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 };