export default class BrTipLabel extends PureComponent { static propTypes: { className: PropTypes.Requireable; text: PropTypes.Requireable; tip: PropTypes.Validator; tipLocation: PropTypes.Requireable; }; static defaultProps: { tipLocation: any; }; constructor(props: any); constructor(props: any, context: any); render(): JSX.Element; } import { PureComponent } from 'react'; import PropTypes from 'prop-types';