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