export namespace CheckboxStates { const None: string; const Partial: string; const All: string; } export default class BrMultistateCheckbox extends React.PureComponent { static propTypes: { className: PropTypes.Requireable; state: PropTypes.Requireable; onClickCheckbox: PropTypes.Validator<(...args: any[]) => any>; useBulkActions: PropTypes.Requireable; }; static defaultProps: { state: string; useBulkActions: boolean; }; constructor(props: any); constructor(props: any, context: any); handleToggleCheckbox: (e: any) => any; handleToggleCheckboxV2: (e: any) => any; render(): JSX.Element; } import React from 'react'; import PropTypes from 'prop-types';