import { Dimension, Measure } from '@embeddable.com/core'; import { Theme } from '../../../../theme/theme.types'; import { PivotTableProps } from '@embeddable.com/remarkable-ui'; export declare const getPivotMeasures: (props: { measures: Measure[]; displayNullAs?: string; }, theme: Theme) => PivotTableProps["measures"]; export declare const getPivotDimension: (props: { dimension: Dimension; }, theme: Theme) => PivotTableProps["rowDimension" | "columnDimension"]; export declare const getPivotColumnTotalsFor: (measures: Measure[]) => PivotTableProps["columnTotalsFor"] | undefined; export declare const getPivotRowTotalsFor: (measures: Measure[]) => PivotTableProps["rowTotalsFor"] | undefined; //# sourceMappingURL=PivotPro.utils.d.ts.map