import { type FC, type HTMLAttributes, type Ref } from 'react'; import type { ChartColor } from '../types'; export interface BarListBarProps extends HTMLAttributes { ref?: Ref; /** * Built-in palette fill. Each colour maps to the `--color-badge-{color}-light` * design-system token (dark-mode aware). * * Pass a Tailwind `bg-*` utility via `className` to use any other colour — it * wins over the palette class through `tailwind-merge`. */ color?: ChartColor; } export declare const BarListBar: FC;