import * as React from 'react';
import { LegendStyle } from './DataLegend';
interface IProps {
    OnClick?: (e: React.MouseEvent<HTMLDivElement>, legendLabel: string) => void;
    Label: string;
    Color?: string;
    LegendSymbol?: LegendStyle;
    Enabled?: boolean;
    HasNoData?: boolean;
    ToolTipText?: string;
}
declare const LegendEntry: (props: IProps) => null;
export default LegendEntry;
