export default class BrHoverSpanTable extends PureComponent { static propTypes: { className: PropTypes.Requireable; cols: PropTypes.Validator<(PropTypes.InferProps<{ key: PropTypes.Validator; title: PropTypes.Requireable; width: PropTypes.Requireable; }> | null | undefined)[]>; rows: PropTypes.Validator<(PropTypes.InferProps<{}> | null | undefined)[]>; }; constructor(props: any); constructor(props: any, context: any); computeWidthStyle: (width: any) => { width: any; flex?: undefined; } | { flex: string; width?: undefined; }; generateDataRowGrid: (row: any, cols: any) => any[]; generateDataRowGridTemplate: (row: any, cols: any) => { gridTemplateColumns: any; gridTemplateRows: string; }; render(): JSX.Element; } import { PureComponent } from 'react'; import PropTypes from 'prop-types';