type $$ComponentProps = { 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; }; declare const TextareaStory: import("svelte").Component<$$ComponentProps, {}, "">; type TextareaStory = ReturnType; export default TextareaStory;