import React from 'react' import type { FieldRenderProps } from 'react-final-form' import type { TextAreaFieldProps } from '@dhis2-ui/text-area' type InputValue = TextAreaFieldProps['value'] type TextAreaFieldRestProps = Omit< TextAreaFieldProps, 'onChange' | 'value' | 'name' > export type TextAreaFieldFFProps = FieldRenderProps & TextAreaFieldRestProps export const TextAreaFieldFF: React.FC