import React from 'react'; import { ChartDataTypes, InternalChartSeries, MixedLineBarChartProps } 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; } export default function InternalChartLegend({ series, visibleSeries, highlightedSeries, onHighlightChange, legendTitle, ariaLabel, plotContainerRef }: InternalChartLegendProps): JSX.Element; export {};