///
import { SunburstChartProps } from '../../../../props';
/**
* A React component displaying hierarchical data in the form of nested circle slices.
*
* This type of chart can be used in different scenarios, for example, to compare both categories and sub-categories.
*
* @example
* Sunburst chart displaying total quantity, categorized by condition and age range, from the Sample ECommerce data model.
*
* ```tsx
* import { SunburstChart } from '@sisense/sdk-ui';
* import { measureFactory } from '@sisense/sdk-data';
* import * as DM from './sample-ecommerce';
*
* const CodeExample = () => (
*
* );
*
* export default CodeExample;
* ```
*
*
*
* @param props - Sunburst chart properties
* @returns Sunburst Chart component
* @group Charts
*/
export declare const SunburstChart: import("react").FunctionComponent;