1 | import 'react';
|
2 | import { HeatmapOptions as Options } from '@antv/g2plot/lib/plots/heatmap';
|
3 | import { BasePlotOptions } from '../createPlot';
|
4 | import { LengendAPIOptions, TooltipAPIOptions, LabelAPIOptions } from './core/interface';
|
5 | interface HeatmapOptions extends Options, BasePlotOptions {
|
6 |
|
7 | legend?: LengendAPIOptions;
|
8 |
|
9 | tooltip?: TooltipAPIOptions;
|
10 |
|
11 | label?: LabelAPIOptions;
|
12 |
|
13 | shapeType?: any;
|
14 | }
|
15 | export { HeatmapOptions };
|
16 | declare const _default: import("react").ForwardRefExoticComponent<HeatmapOptions & import("react").RefAttributes<any>>;
|
17 | export default _default;
|