import type { RowLeaf } from "@1771technologies/lytenyte-shared";
import type { PivotModel } from "../../../use-client-data-source";
import type { GridSpec } from "../../../../types/index.js";
export declare function pivotPaths<Spec extends GridSpec>(filtered: number[], leafs: RowLeaf<Spec["data"]>[], columns: Required<PivotModel<Spec>>["columns"], measures: PivotModel<Spec>["measures"], labelFilter: PivotModel<Spec>["colLabelFilter"]): string[];
