import React from 'react'; import { CheckboxGroupProps, CheckboxProps } from 'antd/lib/checkbox'; import { ProFormItemProps } from '../../interface'; import './index.less'; export declare type ProFormCheckboxGroupProps = ProFormItemProps & { layout?: 'horizontal' | 'vertical'; options: CheckboxGroupProps['options']; }; export declare type ProFormCheckboxProps = ProFormItemProps; declare const WrappedProFormCheckbox: React.ComponentType & { Group: React.ComponentType; }; export default WrappedProFormCheckbox;