import React from 'react';
import { T as TextareaProps } from '../../form.types-d25ebfac.js';
/**
* Textarea component - Accessible multi-line text input with validation support
*
* A flexible textarea component that supports validation states, proper ARIA attributes
* for accessibility, and an onEnter handler for keyboard interactions. The onEnter handler
* fires only on Enter without Shift, allowing Shift+Enter to create new lines as expected.
*
* @component
* @example
* // Basic textarea
*
*
* @example
* // Textarea with Enter key handler for quick submission
*