import { Entry, Quadrant, Ring } from '../../utils/types'; export type Segments = { [k: number]: { [k: number]: Entry[]; }; }; export type RadarLegendProps = { quadrants: Quadrant[]; rings: Ring[]; entries: Entry[]; onEntryMouseEnter?: (entry: Entry) => void; onEntryMouseLeave?: (entry: Entry) => void; };