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