import { FC, ReactElement } from 'react'; import { HierarchyCircularNode } from 'd3-hierarchy'; import { ColorSchemeType } from '../common/color'; import { Bubble, BubbleProps } from './Bubble'; import { BubbleLabel, BubbleLabelProps } from './BubbleLabel'; export interface BubbleSeriesProps { /** * Id set by the parent. */ id: string; /** * The internal data object built by d3 */ data: HierarchyCircularNode[]; /** * Whether the chart is animated or not. */ animated?: boolean; /** * Color scheme for the chart. */ colorScheme: ColorSchemeType; /** * Bubble element. */ bubble?: ReactElement; /** * Bubble element. */ format?: (item: any) => ReactElement; /** * Label element. */ label?: ReactElement; } export declare const BubbleSeries: FC>;