import React from 'react'; import { SwitchProps as MUISwitchProps } from '@material-ui/core'; import { FieldProps } from './ComponentTypes'; declare type SwitchProps = { domFocusRipple?: boolean; value?: boolean; } & FieldProps & MUISwitchProps; declare const Switch: React.FC; export default Switch;