import React, { FC } from 'react'; import { SwitchProps as MuiSwitchProps } from '@mui/material'; interface SwitchProps extends MuiSwitchProps { size?: 'small' | 'medium'; checkedIcon?: React.ReactNode; uncheckedIcon?: React.ReactNode; disabled?: boolean; className?: string; } export declare const Switch: FC; export {};