import{FeatureCollection}from'geojson';importMediaItemfrom'./MediaItem';exportdefaultinterfaceGroup{/** * ID of the group used in URLs. */id:string;/** * Name of the group. */name?:string;/** * Description of the group. */description?:string;/** * Medias in the group. */media:MediaItem[];/** * Geo data track info in GeoJSON format. */geoData?:FeatureCollection[];/** * Metadata that can be displayed in the description. */metadata?:{[key:string]:string|number};}