import type { RadioProps } from '@mui/material/Radio'; export interface IRadioProps extends RadioProps { checked?: boolean; label?: string; disabled?: boolean; alert?: boolean; [key: string]: any; } declare const Radio: ({ sx, checked, size, label, disabled, alert, ...otherProps }: IRadioProps) => import("react/jsx-runtime").JSX.Element; export default Radio;