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