import type { Column, GridSpec } from "../../../types/index.js";
import type { PivotModel } from "../../use-client-data-source.js";
import type { AggregationFn, Aggregator } from "@1771technologies/lytenyte-shared";
export declare function usePivotAggFunction<Spec extends GridSpec>(pivotColumns: Column<Spec>[] | null, model: PivotModel<Spec> | undefined, aggs?: Record<string, Aggregator<Spec["data"]>>): AggregationFn<Spec["data"]> | null;
