import React from 'react'; import { ChartDataTypes, MixedLineBarChartProps, InternalChartSeries } from './interfaces'; interface InternalChartLegendProps { series: ReadonlyArray>; visibleSeries: ReadonlyArray>; plotContainerRef: React.RefObject; highlightedSeries?: MixedLineBarChartProps.ChartSeries | null; onHighlightChange: (series: MixedLineBarChartProps.ChartSeries | null) => void; legendTitle?: string; ariaLabel?: string; } declare function InternalChartLegend({ series, visibleSeries, highlightedSeries, onHighlightChange, legendTitle, ariaLabel, plotContainerRef, }: InternalChartLegendProps): JSX.Element; export default InternalChartLegend; //# sourceMappingURL=chart-legend.d.ts.map