export interface Location { country: string; lat: number; lng: number; description: string; locations: Array; } export interface Locations { name: string; lat: number; lng: number; description: string; }