import type { Cell, DataItem } from '../../types';
import { ChartType } from '../../types';
export declare const isStackChartInAxes: (series: any[], chartType: ChartType) => boolean;
export declare const isStackChart: (spec: any, chartType: ChartType, cell: Cell) => any;
export declare const isPercentChart: (spec: any, chartType: ChartType, cell: Cell) => any;
export declare const isStackSeries: (spec: any, yField: string) => boolean;
export declare const isPercenSeries: (spec: any, yField: string) => boolean;
export declare const sumDimensionValues: (dataset: DataItem[], measureId: string | number, getValue?: (v: number) => number) => number;
