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