import { type FC, type HTMLAttributes, type Ref } from 'react'; export type PieChartLegendPercentVariant = 'split' | 'muted' | 'inherit'; export interface PieChartLegendPercentProps extends HTMLAttributes { ref?: Ref; /** Number of fractional digits in the percent label. Defaults to `0`. */ digits?: number; /** * Color treatment for the value and the `%` symbol. Mirrors `BarListPercent`. * - `split` (default, matches Figma) — value uses `text-text-primary`, symbol uses `text-text-secondary`. * - `muted` — both tokens use `text-text-secondary`. * - `inherit` — both inherit the parent's color (e.g. follow `PieChartLegendValue`). */ variant?: PieChartLegendPercentVariant; } export declare const PieChartLegendPercent: FC;