interface TextareaProps { id?: string; name?: string; label?: string; placeholder?: string; value?: string; status?: 'default' | 'error' | 'success' | 'warning'; helperText?: string; disabled?: boolean; readonly?: boolean; required?: boolean; rows?: number; maxLength?: number; showCount?: boolean; autoResize?: boolean; class?: string; oninput?: (e: Event) => void; onchange?: (e: Event) => void; onfocus?: (e: FocusEvent) => void; onblur?: (e: FocusEvent) => void; onkeydown?: (e: KeyboardEvent) => void; autofocus?: boolean; } declare const Textarea: import("svelte").Component; type Textarea = ReturnType; export default Textarea;