import { type ReactElement } from "react"; import { type ChartFillType } from "../coloring/types.js"; import { type ISeriesItem, type ItemBorderRadiusPredicate } from "./types.js"; export interface ILegendListProps { series: ISeriesItem[]; enableBorderRadius?: boolean | ItemBorderRadiusPredicate; width?: number; onItemClick: (item: ISeriesItem) => void; chartFill?: ChartFillType; } export declare function LegendSeparator(): ReactElement; export declare const LegendList: import("react").NamedExoticComponent; //# sourceMappingURL=LegendList.d.ts.map