declare class Heatmap { private _config; private _coordinator; _renderer: any; private _store; constructor(config: any); private _connect; addData(...args: any[]): this; removeData(...args: any[]): this; setData(...args: any[]): this; setDataMax(...args: any[]): this; setDataMin(...args: any[]): this; configure(config: any): this; repaint(): this; getData(): { min: number; max: number; data: any[]; }; getDataURL(): any; getValueAt(point: { x: number; y: number; }): any; } declare const _default: { create(config: any): Heatmap; register(pluginKey: string, plugin: any): void; }; export default _default;