import React from 'react'; import { ChartSeriesMarkerType } from '../chart-series-marker'; export interface ChartLegendItem { label: string; color: string; type: ChartSeriesMarkerType; datum: T; } export interface ChartLegendProps { series: ReadonlyArray>; highlightedSeries: T | null; legendTitle?: string; ariaLabel?: string; plotContainerRef?: React.RefObject; onHighlightChange: (series: T | null) => void; } declare const _default: typeof ChartLegend; export default _default; declare function ChartLegend({ series, onHighlightChange, highlightedSeries, legendTitle, ariaLabel, plotContainerRef, }: ChartLegendProps): JSX.Element; //# sourceMappingURL=index.d.ts.map