import type { PieChartProps as PieChartPropsPreact } from '@sisense/sdk-ui-preact';
import type { PropType } from 'vue';
/**
* Props of the {@link @sisense/sdk-ui-vue!PieChart | `PieChart`} component.
*/
export interface PieChartProps extends PieChartPropsPreact {
}
/**
* A Vue 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
* Here's how you can use the PieChart component in a Vue application:
* ```vue
*
*
*
*