import { default as React } from 'react'; export interface DonutData { id: string; label?: string; color: string; value: number; } export interface DonutProps { data: DonutData[]; hoveredId?: string; onClick?: (id: string) => void; onMouseEnter?: (id: string) => void; onMouseLeave?: (id: string) => void; selectedId?: string; size?: number; } declare const Donut: React.FC>; export default Donut;