import { SwitchProps } from '@mui/material';

interface StyledSwitchProps extends SwitchProps {
    sizing?: 'sm' | 'lg';
}

export type { StyledSwitchProps };
