import { Poi } from './poi'; export interface PoiGroup { id: number; name: string; pois: Poi[]; }