import type { Arc, PieArcDatum } from 'd3-shape'; import { type TruncationMode } from '@dynatrace/strato-components/typography'; import type { Formatter } from '../../core/types/formatter.js'; import type { InternalLabel, InternalSliceData } from '../types/internal/pie-chart.js'; import type { LabelTypeOptions } from '../types/pie-chart.config.js'; export declare const buildLabel: (arc: PieArcDatum, path: Arc>, valueType: LabelTypeOptions | undefined, formatter: Formatter, truncationMode: TruncationMode, leftCenter: number) => InternalLabel;