import { Base, Type } from "./type";
import { ISummaryResult } from "./ISummaryResult";
import { DataSourceSummaryOperand } from "./DataSourceSummaryOperand";
/**
 * @hidden
 */
export declare class DefaultSummaryResult extends Base implements ISummaryResult {
    static $t: Type;
    constructor(a: string, b: DataSourceSummaryOperand, c: any);
    static createWithDisplay(a: string, b: DataSourceSummaryOperand, c: any, d: boolean): DefaultSummaryResult;
    private a;
    private g;
    private f;
    private b;
    private e;
    private d;
    get groupKey(): any[];
    set groupKey(a: any[]);
    get propertyName(): string;
    get operand(): DataSourceSummaryOperand;
    get value(): any;
    set value(a: any);
    get summaryIndex(): number;
    set summaryIndex(a: number);
    get shouldDisplay(): boolean;
    set shouldDisplay(a: boolean);
}
