import type { HTMLAttributes } from 'react'; import type { CommonInputProps } from '../types'; export interface TextareaProps extends CommonInputProps { autoCapitalize?: HTMLAttributes['autoCapitalize']; defaultValue?: string; maxRows?: number; minRows?: number; onBlur?: () => void; onChange?: (value: string) => void; onFocus?: () => void; placeholder?: string; resizeable?: boolean; rows?: number; value?: string; }