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