import { type Unit } from '@dynatrace-sdk/units'; import { CustomColorPalette, ColorPalette } from '../../core/types/color-palette.js'; import { InternalSliceData } from '../types/internal/pie-chart.js'; import { SliceData } from '../types/pie-chart.config.js'; /** * Builds the slices and their configurations for the pie and donut chart. * @param data - Data received from the dataSet. * @param colorPalette - Color to apply to the slices. * @returns An array of internal slices. */ export declare const buildSlices: (data: SliceData[], colorPalette?: ColorPalette | CustomColorPalette, unit?: string | Unit) => InternalSliceData[];