import React from 'react'; import { LegendConfig, DatasetConfig, ChartDimensions } from '../../types'; interface LegendProps { config: LegendConfig; datasets: DatasetConfig[]; colors: string[]; dimensions: ChartDimensions; onToggleDataset?: (index: number) => void; isMobile?: boolean; } /** * Legend component - Displays dataset labels with color indicators * Fully accessible with keyboard navigation */ export declare const Legend: React.FC; export default Legend;