import { Type } from "./type";
import { DataSourceSummaryOperand } from "./DataSourceSummaryOperand";
/**
 * @hidden
 */
export interface ISummaryResult {
    groupKey: any[];
    readonly propertyName: string;
    readonly operand: DataSourceSummaryOperand;
    value: any;
    summaryIndex: number;
    shouldDisplay: boolean;
}
/**
 * @hidden
 */
export declare let ISummaryResult_$type: Type;
