import { ILegendRequiredProps } from './LegendContext';
export interface IProps extends ILegendRequiredProps {
    unitLabel?: string;
    minValue: number;
    minColor: string;
    maxValue: number;
    maxColor: string;
}
declare function HeatLegend(props: IProps): JSX.Element;
export default HeatLegend;
