import { Type } from "./type";
import { ISummaryResult } from "./ISummaryResult";
/**
 * @hidden
 */
export interface ISectionInformation {
    readonly startIndex: number;
    readonly endIndex: number;
    readonly groupKeyProperties: string[];
    readonly groupKeyValues: any[];
    readonly summaryResults: ISummaryResult[];
}
/**
 * @hidden
 */
export declare let ISectionInformation_$type: Type;
