CityAttributes: FeatureVectorAttributes<CityID> & {
    countryID: CountryID | null;
    englishName: string | null;
    geoJSONGeometry: Point;
    id: CityID;
    isEmpty: boolean;
    name: string | null;
    stateID: StateId | null;
}