import { type FC, type HTMLAttributes, type Ref } from 'react';
export interface BarListItemProps extends HTMLAttributes {
ref?: Ref;
value: number;
/**
* Marks the row as visually active (selected / filtered). Applies the
* hover background + `aria-current`. The bar width and percent label are
* driven purely by `value / max` — `selected` never changes the fill.
*/
selected?: boolean;
}
export declare const BarListItem: FC;