/// <reference types="react" />
import type { SwitchProps } from '@mui/material/Switch';
interface SwitchRadioProps extends SwitchProps {
    label?: string;
}
export default function SwitchRadio({ label, ...props }: SwitchRadioProps): JSX.Element;
export {};
