export function Tooltip({ children }: { children: any; }): JSX.Element | null; export namespace Locations { const bottomRight: string; const top: string; const bottom: string; const left: string; const right: string; } export default class BrTooltip extends React.Component { static propTypes: { className: PropTypes.Requireable; location: PropTypes.Requireable; isDark: PropTypes.Requireable; children: PropTypes.Validator>; }; static defaultProps: { location: string; }; constructor(props: any); constructor(props: any, context: any); render(): JSX.Element; } import React from 'react'; import PropTypes from 'prop-types';