import React from 'react'; export type Category = 'Technology' | 'System' | 'People' | 'Process' | 'Influence'; export type LevelMap = { [key in Category]: string[]; }; export type SelectedLevels = { [key in Category]: string; }; export interface RadarProps { username: string; levels?: SelectedLevels; } export declare const Radar: React.FC; export default Radar;