/// export interface LegendItemProps { activeLegend?: string; color: string; label: string; name: string; onClick?: (name: string, color: string) => void; } declare const LegendItem: import("react").NamedExoticComponent; export default LegendItem;