export default class BrLoader extends React.PureComponent { static propTypes: { className: PropTypes.Requireable; loadingMsg: PropTypes.Requireable; withOverlay: PropTypes.Requireable; }; static defaultProps: { loadingMsg: string; withOverlay: boolean; }; constructor(props: any); constructor(props: any, context: any); render(): JSX.Element; } import React from 'react'; import PropTypes from 'prop-types';