import { Base, Type } from "./type";
import { ISummaryResult } from "./ISummaryResult";
import { DataSourceSummaryOperand } from "./DataSourceSummaryOperand";
/**
 * @hidden
 */
export declare class GenericSummaryResult extends Base implements ISummaryResult {
    static $t: Type;
    private _groupKey;
    get groupKey(): any[];
    set groupKey(a: any[]);
    private _propertyName;
    get propertyName(): string;
    set propertyName(a: string);
    private _operand;
    get operand(): DataSourceSummaryOperand;
    set operand(a: DataSourceSummaryOperand);
    private _value;
    get value(): any;
    set value(a: any);
    private _summaryIndex;
    get summaryIndex(): number;
    set summaryIndex(a: number);
    private _shouldDisplay;
    get shouldDisplay(): boolean;
    set shouldDisplay(a: boolean);
}
