/// import React from 'react'; import { CheckboxItemProps } from './PropsType'; export default class CheckboxItem extends React.Component { static defaultProps: { prefixCls: string; listPrefixCls: string; }; render(): JSX.Element; }