import React, { FC, SVGAttributes } from 'react'; import { RawData, AnimationOptions, ChartPadding, Dimensions, PieConfig, ShapeClickEventHandler } from 'eazychart-core/src/types'; import { TooltipProps } from '@/components/addons/tooltip/Tooltip'; import { LegendProps } from '@/components/addons/legend/Legend'; export interface IrregularPieChartProps extends SVGAttributes { data: RawData; colors?: string[]; animationOptions?: AnimationOptions; padding?: ChartPadding; valueDomainKey?: string; labelDomainKey?: string; arc?: PieConfig; dimensions: Partial; onShapeClick?: ShapeClickEventHandler; scopedSlots?: { LegendComponent: React.FC; TooltipComponent: React.FC; }; } export declare const IrregularPieChart: FC;