export type GridAggregationFunction = (values: T[]) => R | null; export declare const sum: GridAggregationFunction; export declare const avg: GridAggregationFunction; export declare const min: GridAggregationFunction; export declare const max: GridAggregationFunction; export declare const size: GridAggregationFunction; export declare const AGGREGATION_FUNCTIONS: { sum: GridAggregationFunction; avg: GridAggregationFunction; min: GridAggregationFunction; max: GridAggregationFunction; size: GridAggregationFunction; }; //# sourceMappingURL=aggregation.d.ts.map