interface Props { /** Field identifier */ id: string; /** Current value */ value: string; /** Placeholder text */ placeholder?: string; /** Number of visible rows */ rows?: number; /** Whether the field is required */ required?: boolean; /** Whether the field is disabled (read-only) */ disabled?: boolean; /** ARIA description ID */ ariaDescribedBy?: string; /** Callback when value changes */ onChange: (value: string) => void; } declare const FormTextarea: import("svelte").Component; type FormTextarea = ReturnType; export default FormTextarea;