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