import * as React from "react"; export type TextareaProps = React.ComponentProps<"textarea"> & { onValueChange?: (value: string) => void; helperText?: React.ReactNode; errorText?: React.ReactNode; showCharacterCount?: boolean; countFormatter?: (currentLength: number, maxLength?: number) => React.ReactNode; wrapperClassName?: string; textareaClassName?: string; }; declare const Textarea: React.ForwardRefExoticComponent & React.RefAttributes>; export { Textarea };