import { Textarea, TextareaProps } from './textarea'; import { TextareaIndicatorProps } from './textarea-indicator'; import { TextareaGroupRootProps } from './textarea-group'; import { TextareaClearButtonProps } from './textarea-clear-button'; declare const TextareaGroup: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { frameClassName?: string; preventGroupClickSelect?: boolean; } & import('react').RefAttributes> & { Textarea: import('react').ForwardRefExoticComponent, HTMLTextAreaElement>, "ref">, "children"> & { validationState?: "invalid" | "valid"; isLoading?: boolean; autosize?: boolean; charactersLimit?: number; onValueChange?: (value: string) => void; } & import('react').RefAttributes>; TextareaIndicator: import('react').ForwardRefExoticComponent, "ref"> & { isValid?: boolean; isLoading?: boolean; } & import('react').RefAttributes>; TextareaClearButton: import('react').ForwardRefExoticComponent>; }; type TextareaGroupProps = { Root: TextareaGroupRootProps; Textarea: TextareaProps; Indicator: TextareaIndicatorProps; ClearButton: TextareaClearButtonProps; }; export { Textarea, TextareaGroup }; export type { TextareaGroupProps, TextareaProps };