import * as React from 'react'; import { SwitchProps } from '@mui/material/Switch'; export interface SwitchBaseProps extends Omit { name: string; } declare function Switch({ name, disabled: disableSwitch, ...props }: SwitchBaseProps): React.JSX.Element; declare namespace Switch { var displayName: string; } declare const _default: React.MemoExoticComponent; export default _default;