import { InternalSliceData } from '../types/internal/pie-chart.js'; /** * @param slices - Data recived from the dataSet * @param visibleIds - Ids of the visible slices * @returns The absolute and relative value calculated. */ export declare function buildCumulativeValues(slices: InternalSliceData[], visibleIds: string[]): { absoluteValue: number; relativeValue: number; };