import React from 'react'; import PropTypes from 'prop-types'; import { AnalyticsLayoutCellProps } from '../AnalyticsLayout.types'; /** Cell */ declare class Cell extends React.PureComponent { static defaultProps: { disableHighlight: boolean; children: null; }; static displayName: string; static propTypes: { dataHook: PropTypes.Requireable; disableHighlight: PropTypes.Requireable; children: PropTypes.Validator; }; state: { isHovered: boolean; }; _setHover(isHovered: boolean): void; render(): React.JSX.Element; } export default Cell; //# sourceMappingURL=Cell.d.ts.map