import { CheckboxValueType } from 'antd/lib/checkbox/Group'; import React from 'react'; import { ResultArrayItemType } from './type'; /** * @property data Checkbox.Group data needed to render child nodes * @property value Array */ export interface ItemCheckboxProps { data: ResultArrayItemType[]; value?: CheckboxValueType[]; onChange?: (value: CheckboxValueType[]) => void; className?: string; } declare const ItemCheckbox: React.FC; export default ItemCheckbox;