import React from 'react'; import type { CheckboxProps } from 'antd'; import type { ProSchema } from 'ls-pro-utils'; import type { CheckboxGroupProps } from 'antd/lib/checkbox'; import type { ProFormFieldItemProps } from '../../interface'; export declare type ProFormCheckboxGroupProps = ProFormFieldItemProps & { layout?: 'horizontal' | 'vertical'; options?: CheckboxGroupProps['options']; valueEnum?: ProSchema['valueEnum']; request?: ProSchema['request']; }; declare const CheckboxGroup: React.FC; export declare type ProFormCheckboxProps = ProFormFieldItemProps; /** * 多选框的 * * @param */ declare const ProFormCheckboxComponents: React.FC; declare const WrappedProFormCheckbox: typeof ProFormCheckboxComponents & { Group: typeof CheckboxGroup; }; export default WrappedProFormCheckbox;