import { FC } from 'react'; import { BooleanField, BooleanFieldProps } from '../boolean-field'; export type RadioProps = Omit; /** * Radio component * * Render a radio input type. */ export const Radio: FC = (props) => ( );