interface CheckboxProps { /** web only */ prefixCls?: string; /** web only */ className?: string; /** web only */ name?: string; style?: {}; defaultChecked?: boolean; checked?: boolean; disabled?: boolean; onChange?: Function; } export default CheckboxProps;