type RadioItem = { label: import('@mui/material').FormControlLabelProps['label']; value: RadioItemValue; }; type RadioItemList = Record>; type RadioGroupWithLabelOptionalProps = { formControlProps?: import('@mui/material').FormControlProps; formControlLabelProps?: import('@mui/material').FormControlLabelProps; formLabelProps?: import('@mui/material').FormLabelProps; label?: import('react').ReactNode; radioProps?: import('@mui/material').RadioProps; radioGroupProps?: import('@mui/material').RadioGroupProps; }; type RadioGroupWithLabelProps = RadioGroupWithLabelOptionalProps & Pick< import('@mui/material').RadioGroupProps, 'name' | 'onChange' | 'value' > & { id: string; radioItems: RadioItemList; };