import { TextareaHTMLAttributes } from 'react'; import { default as styles } from './Textarea.module.css'; import { FormPublicProps } from '../FormInput/FormInput'; export { styles as TextareaClasses }; export interface TextareaProps extends Omit, TextareaHTMLAttributes { } /** * Wraps a standard HTML textarea element within a `FormInput` container, applying custom styles and functionality. * This component inherits the flexible design of the `FormInput`, allowing it to display a header and reflect different status styles. * The appearance and behavior of the textarea can be customized through various props, providing a seamless integration with forms. */ export declare const Textarea: import('react').ForwardRefExoticComponent & import('react').RefAttributes>;