import type { Aggregator } from './../interfaces/aggregator.interface.js'; import type { GroupTotals } from './../interfaces/grouping.interface.js'; export declare class AvgAggregator implements Aggregator { private _isInitialized; private _isTreeAggregator; private _nonNullCount; private _sum; private _field; private _type; constructor(field: number | string); get field(): number | string; get isInitialized(): boolean; get type(): string; init(item?: any, isTreeAggregator?: boolean): void; accumulate(item: any, isTreeParent?: boolean): void; storeResult(groupTotals: GroupTotals): void; protected addGroupTotalPropertiesWhenNotExist(groupTotals: any): void; } //# sourceMappingURL=avgAggregator.d.ts.map