import React from 'react'; import { SwitchProps } from 'antd'; import { BizFormItemProps } from './Item'; export interface BizFormItemSwitchProps extends BizFormItemProps, Pick { switchProps?: SwitchProps; } declare const BizFormItemSwitch: React.FC; export default BizFormItemSwitch;