import type { LiteralUnion } from 'type-fest'; import type { SwitchProps as MuiSwitchProps } from '@mui/material'; type CustomSwitchProps = { variant?: LiteralUnion<'success' | 'error' | 'warning' | 'info' | 'primary' | 'secondary', string>; } & MuiSwitchProps; declare const SwitchButton: React.FC; export default SwitchButton;