import React from 'react'; export interface IDonutChartData { label: string; value: number; color: string; } export interface IDonutChart { className?: string; style?: React.CSSProperties; data: IDonutChartData[]; width?: number; height?: number; segmentOffset?: number; strokeWidth?: number; useTooltip?: boolean; onSegmentClick?(e: React.MouseEvent, segment: IDonutChartData): void; [x: string]: any; } export declare function DonutChart(props: IDonutChart): JSX.Element;