import { type ChartFillType } from "../coloring/types.js"; import { type ISeriesItemMetric } from "./types.js"; interface ILegendItemProps { item: ISeriesItemMetric; index: number; width?: number; enableBorderRadius?: boolean; onItemClick: (item: ISeriesItemMetric) => void; chartFill?: ChartFillType; } export declare function LegendItem({ item, index, width, enableBorderRadius, onItemClick, chartFill }: ILegendItemProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=LegendItem.d.ts.map