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