import { FormControlLabelProps, RadioGroupProps as MuiRadioGroupProps } from '@mui/material'; export interface RadioGroupItem { id: ID; props?: Partial; } export interface RadioGroupProps extends MuiRadioGroupProps { items: RadioGroupItem[]; } export interface RadioGroupHookParams extends Omit, 'onChange' | 'value'> { onChange?: (selectedItem: RadioGroupItem) => void; value?: ItemID; } //# sourceMappingURL=types.d.ts.map