import { CheckboxValueType } from 'antd/lib/checkbox/Group'; import React from 'react'; import { ResultArrayItemType } from './type'; export interface ItemSelectProps { data: ResultArrayItemType[]; value?: CheckboxValueType[]; onChange?: (value?: CheckboxValueType[]) => void; className?: string; } declare const ItemSelect: React.FC; export default ItemSelect;