import * as React from 'react';
interface IProps {
    height: number;
    width: number;
    location: 'bottom' | 'right';
    graphHeight: number;
    graphWidth: number;
    RequestLegendWidth: (width: number, requesterID: string) => void;
    RequestLegendHeight: (height: number) => void;
    HideDisabled: boolean;
}
declare function Legend(props: IProps): JSX.Element;
declare const _default: React.MemoExoticComponent<typeof Legend>;
export default _default;
