import React from 'react' import type { FieldRenderProps } from 'react-final-form' import type { RadioProps } from '@dhis2-ui/radio' type InputValue = RadioProps['value'] type RadioRestProps = Omit< RadioProps, 'onChange' | 'value' | 'checked' | 'name' > export type RadioFieldFFProps = FieldRenderProps & RadioRestProps & { showValidStatus?: boolean } export const RadioFieldFF: React.FC