///
import { RadioProps, SxProps, Theme } from '@mui/material';
export interface RadioButtonProps extends Omit {
size?: 'small' | 'medium' | 'large';
customCheckedIcon?: React.ReactNode;
checkedColor?: string;
disabledColor?: string;
hoverColor?: string;
iconSize?: number;
showRipple?: boolean;
sx?: SxProps;
}