import { CheckboxProps } from '@beisen-phoenix/checkbox'; export interface CheckboxGroupProps { options?: Array; disabled?: boolean; checkedList?: Array; defaultCheckedList?: Array; onChange?: (selectedItems: any, checkItem?: object) => void; arrangement?: 'row' | 'col'; colSpace?: number; extraCls?: string; tipsType?: string; checkboxWidth?: number; showCheckAll?: boolean; translation?: any; }