import { type ReactElement } from "react"; import { type ChartFillType } from "../../coloring/types.js"; import { type ISeriesItem, type ItemBorderRadiusPredicate } from "../types.js"; /** * @internal */ export interface IPopUpLegendProps { series: ISeriesItem[]; onLegendItemClick: (item: ISeriesItem) => void; name?: string; maxRows?: number; enableBorderRadius?: boolean | ItemBorderRadiusPredicate; containerId: string; customComponent?: ReactElement | null; customComponentName?: string; chartFill?: ChartFillType; } /** * @internal */ export declare function PopUpLegend({ name, maxRows, enableBorderRadius, series, onLegendItemClick, containerId, customComponent, customComponentName, chartFill }: IPopUpLegendProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=PopUpLegend.d.ts.map