import * as React from "react";
import { IHeatmapLegendItem } from "../../typings/legend";
export interface IHeatmapLegendProps {
    series: IHeatmapLegendItem[];
    isSmall: boolean;
    format?: string;
    numericSymbols: string[];
    position: string;
}
export default class HeatmapLegend extends React.PureComponent<IHeatmapLegendProps> {
    render(): JSX.Element;
}
