import type { ColorSchemeName } from '../colors'; import type { CompositionType } from './'; import type { SVGAttributes } from 'svelte/elements'; type $$ComponentProps = SVGAttributes & { composition: CompositionType; size?: number; padding?: number; show_labels?: boolean; show_amounts?: boolean; show_percentages?: boolean; color_scheme?: ColorSchemeName; svg_node?: SVGSVGElement | null; }; declare const BubbleChart: import("svelte").Component<$$ComponentProps, {}, "svg_node">; type BubbleChart = ReturnType; export default BubbleChart;