export default class BrCopyButton extends PureComponent { static propTypes: { className: PropTypes.Requireable; data: PropTypes.Requireable; }; static defaultProps: { data: string; }; constructor(props: any); constructor(props: any, context: any); copyToClipboard(str: any, onClick: any): void; render(): JSX.Element; } import { PureComponent } from 'react'; import PropTypes from 'prop-types';