import { FC, ReactElement } from 'react'; import { ChartProps } from '../common/containers/ChartContainer'; import { ChartNestedDataShape, ChartShallowDataShape } from '../common/data'; import { SunburstSeries, SunburstSeriesProps } from './SunburstSeries'; export interface SunburstChartProps extends ChartProps { /** * Data the chart will receive to render. */ data: ChartShallowDataShape[] | ChartNestedDataShape[]; /** * The series component that renders the components. */ series?: ReactElement; } export declare const SunburstChart: FC>;