import { MouseEventHandler } from "react"; export type XRadioTypes = { name: string; value: string; children: string; checked: boolean; onClick: MouseEventHandler; }; export default XRadioTypes;