export type { TextareaProps } from './props'; export type TextareaAutoSize = { minRows?: number; maxRows?: number; } | boolean; export type TextareaResize = 'none' | 'both' | 'horizontal' | 'vertical';