import * as React from 'react'; import { CheckboxProps } from 'antd'; import type { ProFormOtherType } from '../../../propsType'; export interface Props extends CheckboxProps { label?: string; otherProps?: ProFormOtherType; isView?: boolean; } declare const SwitchCheckbox: React.FC; export default SwitchCheckbox;