///
import { PieChartProps } from '../../../../props';
/**
* A React component representing data in a circular graph with the data shown as slices of a whole,
* with each slice representing a proportion of the total.
*
* @example
* Pie chart displaying total revenue per age range from the Sample ECommerce data model.
*
* ```tsx
* import { PieChart } from '@sisense/sdk-ui';
* import { measureFactory } from '@sisense/sdk-data';
* import * as DM from './sample-ecommerce';
*
* const CodeExample = () => (
*
* );
*
* export default CodeExample;
* ```
*
*
*
* Donut chart variant, using the same data:
*
* ```tsx
*
* ```
*
*
*
* Ring chart variant, using the same data:
*
* ```tsx
*
* ```
*
*
*
* @param props - Pie chart properties
* @returns Pie Chart component
* @group Charts
*/
export declare const PieChart: import("react").FunctionComponent;