import { InputField, ISize, SVGWidget } from "@hpcc-js/common"; import "../src/Bubble.css"; export declare class Bubble extends SVGWidget { static __inputs: InputField[]; labelWidgets: any; d3Pack: any; constructor(); size(): ISize; size(_: any): this; enter(domNode: any, element: any): void; update(domNode: any, element: any): void; exit(domNode: any, element: any): void; } export interface Bubble { paletteID(): string; paletteID(_: string): this; useClonedPalette(): boolean; useClonedPalette(_: boolean): this; _palette: any; fillColor(row: any[], column: string, value: number): string; textColor(row: any[], column: string, value: number): string; click(row: any, column: any, selected: any): void; dblclick(row: any, column: any, selected: any): void; tooltip: any; tooltipHTML(_: any): string; tooltipFormat(_: any): string; tooltipStyle(): "default" | "none" | "series-table"; _selection: any; }