/// import { radio } from './interface'; interface IRadioGroup { defaultType?: number | string; onChange?: (e: any) => void; isFull?: boolean; type?: any; extraRadios?: radio; } declare const _default: ({ type, extraRadios, defaultType, isFull, onChange }: IRadioGroup) => JSX.Element; export default _default;