import { BasePropsType, BaseFormItemTypeWithOutFocus } from '../_internal'; import { ListPropsType } from '../List/PropsType'; export interface CheckboxPropsType extends BasePropsType, BaseFormItemTypeWithOutFocus { value?: any; checked?: boolean; defaultChecked?: boolean; } export interface CheckboxGroupPropsType extends BasePropsType, Omit, 'id'>, ListPropsType { value?: any[]; defaultValue?: any[]; } export interface CheckboxItemPropsType extends BasePropsType { disabled?: boolean; value?: any; id?: string; }