export interface BarListContextValue { max: number; isValidMax: boolean; } export interface BarListItemContextValue { /** `value / max`, clamped to [0, 1]. Drives both the bar width and the percent label. */ ratio: number; selected: boolean; interactive: boolean; } export declare const BarListContext: import("react").Context; export declare const BarListItemContext: import("react").Context;