import React from "react"; import { StackedLegendItem } from "../../types"; export type StackedLegendLayout = "auto" | "showMore" | "scrollable"; interface StackedLegendProps { items: StackedLegendItem[]; onItemHover?: (key: string | null) => void; activeKey?: string | null; onLegendItemHover?: (index: number | null) => void; containerWidth?: number; title?: string; separator?: boolean; showTitle?: boolean; layout?: StackedLegendLayout; className?: string; style?: React.CSSProperties; } export declare const StackedLegend: ({ items, onItemHover, activeKey, onLegendItemHover, containerWidth, separator, showTitle, layout, className, style, }: StackedLegendProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=StackedLegend.d.ts.map