import React from "react"; import { SwitchProps as MuiSwitchProps } from "@mui/material/Switch"; export interface SwitchProps { disabled?: boolean; } export interface SwitcherProps extends Omit, SwitchProps { } declare const Switcher: React.FC; export default Switcher;