import type { ChangeEvent, FocusEvent } from 'react'; interface Props { name: string; disabled?: boolean; onChange?: (e: ChangeEvent) => void; placeholder?: string; totalChars?: number; value: string; onBlur?: (event: FocusEvent) => void; } declare const Textarea: ({ value, name, placeholder, disabled, totalChars, onChange, onBlur, }: Props) => import("react/jsx-runtime").JSX.Element; export default Textarea;