import React, { Component } from 'react'; import PropTypes from 'prop-types'; import type { CheckboxItemProps } from '../types'; export default class CheckboxItem extends Component { static menuChildType: string; static propTypes: { checked: PropTypes.Requireable; indeterminate: PropTypes.Requireable; disabled: PropTypes.Requireable; onChange: PropTypes.Requireable<(...args: any[]) => any>; helper: PropTypes.Requireable; children: PropTypes.Requireable; checkboxDisabled: PropTypes.Requireable; }; static defaultProps: { checked: boolean; indeterminate: boolean; disabled: boolean; onChange: () => void; checkboxDisabled: boolean; }; render(): React.JSX.Element; }