import { SwitchProps as MuiSwitchProps } from '@material-ui/core/Switch'; import { BaseProps } from './props'; export interface SwitchProps extends BaseProps, Omit { } declare const Switch: ({ name, rules, defaultValue, defaultChecked, ...rest }: SwitchProps) => JSX.Element; export default Switch;