import { Widget, type BuildContext } from "@meursyphus/flitter"; import type { Custom, Dependencies, Data, Theme, Scale } from "../types"; import ChartContextWidget from "../../../common/ChartContextWidget"; export type BubbleProps = { color: string; points: { x: number; y: number; value: number; }[]; }; export type BubbleConfig = { bubbleMinRadius?: number; bubbleMaxRadius?: number; }; export declare class Bubble extends ChartContextWidget { private props; constructor(props: BubbleProps); build(context: BuildContext): Widget; } declare const _default: (props: BubbleProps) => Bubble; export default _default;