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<CellSummaryPopupComponent> {
    CellSummary: CellSummmaryInfo;
    onCreateCellSummary: () => InternalRedux.CreateCellSummaryInfoAction;
}
declare class CellSummaryPopupComponent extends React.Component<CellSummaryPopupProps, EditableConfigEntityState> {
    componentDidMount(): void;
    render(): React.JSX.Element;
}
export declare let CellSummaryPopup: import("react-redux").ConnectedComponent<typeof CellSummaryPopupComponent, {
    [x: string]: any;
}>;
export {};
