import './HeatmapLegend.scss';
import React from 'react';
export interface HeatmapLegendTick {
    value: number;
    color: string;
}
export interface HeatmapLegendProps {
    ticks: HeatmapLegendTick[];
    ariaLabel: string;
    className?: string;
    style?: React.CSSProperties;
}
declare const HeatmapLegend: ({ ticks, ariaLabel, className, style }: HeatmapLegendProps) => React.JSX.Element | null;
export default HeatmapLegend;
//# sourceMappingURL=HeatmapLegend.d.ts.map