import { LineStyle } from './GraphContext';
import { ILegendRequiredProps } from './LegendContext';
export interface IProps extends ILegendRequiredProps {
    label: string;
    color: string;
    lineStyle: LineStyle;
    setEnabled: (arg: boolean) => void;
    hasNoData: boolean;
}
declare function LineLegend(props: IProps): JSX.Element;
export default LineLegend;
