import React from 'react'; import { CheckboxGroupProps } from 'antd/es/checkbox'; import { ProFormOtherProps } from '../../../propsType'; export interface Props extends Omit { dataSource: any[]; fieldNames?: { label: string; value: string; }; otherProps?: ProFormOtherProps; isView?: boolean; } declare const Checkbox: React.FC; export default Checkbox;