import type { FC } from 'react'; import { BooleanField, type BooleanFieldProps } from '../boolean-field'; export type RadioProps = Omit; /** * Radio component * * Render a radio input type. */ export const Radio: FC = (props) => ( // eslint-disable-next-line react/jsx-no-literals -- Type allowed );