export default class BrOverlayModal extends Component { static propTypes: { children: PropTypes.Validator; className: PropTypes.Requireable; title: PropTypes.Requireable; isDisplayed: PropTypes.Validator; warningMessage: PropTypes.Requireable; controlButtons: PropTypes.Requireable; onClickShadow: PropTypes.Requireable<(...args: any[]) => any>; onClickNavClose: PropTypes.Requireable<(...args: any[]) => any>; }; constructor(props: any); constructor(props: any, context: any); shouldComponentUpdate(nextProps: any): boolean; stopEventPropagation(e: any): void; handleClickShadow: (e: any) => void; render(): JSX.Element; } import { Component } from 'react'; import PropTypes from 'prop-types';