import "./HeatmapLegend.scss";
import React from "react";
export interface HeatmapLegendProps {
    min: number;
    max: number;
    palette: string[];
    ariaLabel: string;
    className?: string;
    style?: React.CSSProperties;
}
declare const HeatmapLegend: ({ min, max, palette, ariaLabel, className, style }: HeatmapLegendProps) => React.JSX.Element;
export default HeatmapLegend;
//# sourceMappingURL=HeatmapLegend.d.ts.map