import React from 'react' import type { InputFieldProps } from '@dhis2-ui/input' import type { FieldRenderProps } from 'react-final-form' export type InputValue = InputFieldProps['value'] type InputFieldRestProps = Omit export type InputFieldFFProps = FieldRenderProps & InputFieldRestProps & { showLoadingStatus?: boolean showValidStatus?: boolean } export const InputFieldFF: React.FC