import * as React from 'react'; import { ModuleViewPopupProps } from '../Components/SharedProps/ModuleViewPopupProps'; import { EditableConfigEntityState } from '../Components/SharedProps/EditableConfigEntityState'; import * as InternalRedux from '../../Redux/ActionsReducers/InternalRedux'; import { CellSummmaryInfo } from '../../AdaptableState/Common/CellSummary'; interface CellSummaryPopupProps extends ModuleViewPopupProps { CellSummary: CellSummmaryInfo; onCreateCellSummary: () => InternalRedux.CreateCellSummaryInfoAction; } declare class CellSummaryPopupComponent extends React.Component { componentDidMount(): void; render(): React.JSX.Element; } export declare let CellSummaryPopup: import("react-redux").ConnectedComponent; export {};