import { default as Textarea } from './textarea.vue'; export interface TextareaProps { id?: string; name?: string; modelValue?: string; placeholder?: string; autofocus?: boolean; disabled?: boolean; readonly?: boolean; required?: boolean; maxLength?: number; error?: string; hideHint?: boolean; autoGrow?: boolean; rows?: number; maxRows?: number; ariaLabel?: string; } export type TextareaEmits = { 'update:modelValue': [value: string]; 'blur': [event: FocusEvent]; }; export type TextareaInstance = InstanceType;