import { ApiBase } from './ApiBase';
import { CellSummaryApi } from '../CellSummaryApi';
import { CustomCellSummaryOperation } from '../../AdaptableState/Common/CellSummary';
import { SummaryOperation } from '../../AdaptableState/Common/Enums';
export declare class CellSummaryApiImpl extends ApiBase implements CellSummaryApi {
    openCellSummaryPopupSettingsPanel(): void;
    getCurrentCellSummaryOperation(): CustomCellSummaryOperation | string;
    getCustomCellSummaryOperations(): CustomCellSummaryOperation[];
    setCurrentCellSummaryOperation(operation: SummaryOperation | string): void;
    getCellSummaryOperationValue(operation: SummaryOperation | string): any;
    getCurrentCellSummaryOperationValue(): any;
}
