import type { HTMLTextareaAttributes } from 'svelte/elements'; type Status = 'normal' | 'invalid' | 'valid' | 'loading'; export interface TextareaProps extends HTMLTextareaAttributes { ref?: HTMLTextAreaElement | null; status?: Status; } declare const Textarea: import("svelte").Component; type Textarea = ReturnType; export default Textarea;