import { SwitchProps } from 'antd'; import React from 'react'; import { ProFormOtherProps } from '../../../propsType'; export interface Props extends Omit { value: any; otherProps?: ProFormOtherProps; isView?: boolean; } declare const Switch: React.FC; export default Switch;