import { withSchema } from '@websolutespa/bom-core'; import { RadioBase, RadioComponent } from './radio-base'; import { RadioGroup } from './radio-group'; export const Radio: RadioComponent & { Group: typeof RadioGroup; } = withSchema( RadioBase, { Group: RadioGroup, });