import { Description } from "./Description";
import { DataGridSummaryResultDescription } from "./DataGridSummaryResultDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class SectionInformationDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    private static __marshalByValue;
    private static __marshalByValueAlias;
    constructor();
    private q;
    get startIndex(): number;
    set startIndex(a: number);
    private p;
    get endIndex(): number;
    set endIndex(a: number);
    private u;
    get groupKeyValuesRef(): string;
    set groupKeyValuesRef(a: string);
    private k;
    get groupKeyProperties(): string[];
    set groupKeyProperties(a: string[]);
    private l;
    get summaryResults(): DataGridSummaryResultDescription[];
    set summaryResults(a: DataGridSummaryResultDescription[]);
}
