export default class BrMultistateToggle extends PureComponent { static propTypes: { className: PropTypes.Requireable; states: PropTypes.Validator<(PropTypes.InferProps<{ title: PropTypes.Validator; value: PropTypes.Validator; tooltip: PropTypes.Requireable; }> | null | undefined)[]>; selectedValue: PropTypes.Requireable; onClick: PropTypes.Validator<(...args: any[]) => any>; }; constructor(props: any); constructor(props: any, context: any); render(): JSX.Element; } import { PureComponent } from 'react'; import PropTypes from 'prop-types';