export interface IconRadialChartProps { radius: number; lineWidth: number; label: string; percentageValue: number; icon?: string; fontSize?: number; labelColor?: string; arcColor?: string; backgroundArcColor?: string; isSelectedArch?: boolean; onSelect?: () => void; } export type ArcParams = { x: number; y: number; radius: number; startAngle: number; endAngle: number; }; export type ArcResult = string; export type ArcAnglesResult = { backgroundArcPath: string; foregroundArcPath: string; };