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