import type { AgColumn, BeanCollection, IAggFunc, RowNode } from 'ag-grid-community';
interface AggregateValuesParams {
    beans: BeanCollection;
    values: any[];
    aggFuncOrString: string | IAggFunc;
    column: AgColumn;
    /** The row node being aggregated. Required for CSRM aggregation, undefined for integrated charts. */
    rowNode: RowNode | undefined;
    /** The pivot result column when aggregating pivot data. */
    pivotResultColumn: AgColumn | undefined;
    /** The children nodes contributing to this aggregation. Required for CSRM aggregation, empty array for integrated charts. */
    aggregatedChildren: RowNode[];
}
export declare function _aggregateValues({ beans, values, aggFuncOrString, column, rowNode, pivotResultColumn, aggregatedChildren, }: AggregateValuesParams): any;
export {};
