import React from 'react'; import { TranslationPopoverProps, DetectionItem } from '../helper'; interface TextAreaItem { text?: string; } interface TextAreaFieldConfig { uid: string; title?: string; type?: string; locked?: boolean; enable_translation?: boolean; TranslationPopover?: (props: TranslationPopoverProps) => React.JSX.Element; translationLabel?: string; } type UpdateValueFunction = (event: { target: { value: DetectionItem[]; type: string; name: string; }; }) => void; type ListTextAreaProps = { field: TextAreaFieldConfig; item: TextAreaItem; updateValue: UpdateValueFunction; isTranslated?: boolean; setIsTranslated?: (isTranslated: boolean) => void; }; declare const ListTextArea: ({ field, item, updateValue, isTranslated, setIsTranslated }: ListTextAreaProps) => React.JSX.Element; export default ListTextArea;