import * as React from 'react';
interface IProps {
    location: 'bottom' | 'right';
    graphHeight: number;
    graphWidth: number;
    height: number;
    width: number;
    RequestLegendWidth: (width: number) => void;
    RequestLegendHeight: (height: number) => void;
    SendMassCommand: (args: {
        requester: string;
        command: "disable-others" | "enable-all";
    }) => void;
    HideDisabled: boolean;
}
declare function LegendWithContext(props: IProps): JSX.Element;
declare const _default: React.MemoExoticComponent<typeof LegendWithContext>;
export default _default;
