import { type HTMLAttributes } from "react"; export interface BarChartItem { label: string; value: number; color?: string; } export interface BarChartProps extends Omit, "aria-label"> { data: BarChartItem[]; max?: number; formatValue?: (value: number) => string; /** Accessible label for the chart (required for accessibility) */ "aria-label": string; } export declare const BarChart: import("react").ForwardRefExoticComponent>;