import { type FC, type HTMLAttributes, type Ref } from 'react'; import { type TestableProps } from '../../../utils/testId'; export interface BarListProps extends HTMLAttributes, TestableProps { ref?: Ref; /** * Value at which a bar reaches 100%. Required. * - Percent inputs → `max={100}`. * - Fractions → `max={1}`. * - Raw counts → `Math.max(...values)` or the total. * * Invalid values (non-finite, zero, negative) render every row empty with a 0% label * and log a single dev-only warning. */ max: number; } export declare const BarList: FC;