import { type CSSProperties, type ReactNode } from "react"; import { type ISeriesItem } from "./types.js"; interface ILegendSeriesProps { series: ISeriesItem[]; label?: string; children: ReactNode; style?: CSSProperties; onToggleItem: (item: ISeriesItem) => void; className?: string; } export declare const LegendSeries: import("react").ForwardRefExoticComponent>; export {}; //# sourceMappingURL=LegendSeries.d.ts.map