import type { SwitchProps } from 'antd'; import React from 'react'; import type { ProFormFieldItemProps } from '../../typing'; export type ProFormSwitchProps = Omit, 'emptyText'> & { checkedChildren?: SwitchProps['checkedChildren']; unCheckedChildren?: SwitchProps['unCheckedChildren']; }; /** * @zh-cn 单选 Switch * @en-us Single Choice Switch */ declare const ProFormSwitch: React.FC; export default ProFormSwitch;