export interface Map {
    viewBox: string;
    locations: Location[];
    label?: string;
}
export interface Location {
    id: string;
    path: string;
    name?: string;
    [key: string]: any;
}
