import React from 'react'; import { PlotProps } from './PlotlyPlot'; import { HeatmapData } from '../types/plots'; export interface HeatmapProps extends PlotProps { /** Label for x axis. Both x and y axes have "independent" variables */ xAxisLabel?: string; /** Label for y axis. */ yAxisLabel?: string; /** Show values as text in heatmap */ showValues?: boolean; zSmooth?: 'fast' | 'best' | false; } declare const Heatmap: React.ForwardRefExoticComponent>; export default Heatmap; //# sourceMappingURL=Heatmap.d.ts.map