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