import { Base, Type } from "./type";
import { ISectionInformation } from "./ISectionInformation";
import { ISummaryResult } from "./ISummaryResult";
/**
 * @hidden
 */
export declare class DefaultSectionInformation extends Base implements ISectionInformation {
    static $t: Type;
    constructor(a: number, b: number, c: string[], d: any[], e: ISummaryResult[]);
    private e;
    get startIndex(): number;
    private d;
    private a;
    private b;
    private c;
    get endIndex(): number;
    get groupKeyValues(): any[];
    get groupKeyProperties(): string[];
    get summaryResults(): ISummaryResult[];
}
