import type { Custom, Theme, Data, Scale, Dependencies } from "./types"; import * as defaultComponents from "./components/default"; import { Widget } from "@meursyphus/flitter"; import { DeepPartial } from "../../utils"; import CartesianChartContextRootWidget from "../../common/CartesianChart/CartesianChartContextRootWidget"; declare class BubbleChart extends CartesianChartContextRootWidget { get root(): Widget; get dependencies(): Dependencies; get scale(): Scale; mergeWithDefaultCustom(custom: Partial): Custom; } declare const _default: (props_0: { custom?: Partial; theme?: DeepPartial; data: Data; scale?: DeepPartial; }) => BubbleChart; export default _default; export { defaultComponents as DefaultComponents };