import type { LegendItem } from './Legend';
export interface BarChartValue {
    itemId: string;
    percentage: number;
}
export interface BarChartRowProps {
    readonly label: string;
    readonly values: BarChartValue[];
    readonly items: LegendItem[];
}
export declare function BarChartRow({ label, values, items }: BarChartRowProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=BarChartRow.d.ts.map