import { IgrPivotDimension } from "./igr-pivot-dimension";
export interface IgrPivotGridRecord {
    /**
     * List of original data records associated with the current pivoted data. *
    */
    records?: any[];
    /**
     * Record level*
    */
    level?: number | string;
    /**
     * List of dimensions associated with the record.*
    */
    dimensions?: IgrPivotDimension[];
    /**
     * If set, it specifies the name of the dimension, that has total record enabled.
    */
    totalRecordDimensionName?: string;
    /**
     * The index of the record in the total view
    */
    dataIndex?: number | string;
}
