import { default as React } from 'react'; import { SxProps } from '@mui/material'; type PieDataItem = { id: string; value: number; label?: string; }; type AbyssPieChartProps = { data: PieDataItem[]; height?: number; donut?: boolean; colors?: string[]; enableLegend?: boolean; formatValue?: (value: number) => string; sx?: SxProps; }; export declare const AbyssPieChart: React.FC; export {};