export interface ConnectionStrength {
  id: string;
  score: '1' | '2' | '3' | '4' | '5';
  name: string;
  color: string;
}
