import { BaseCollectionResponse } from './base-collection-response'; import { CityBodyStructure } from '../../../common/body-entities/responses'; /** * CitiesCollectionResponse class is responsible * for deserializing the response from the metadata * API to a collection of cities. */ export declare class CitiesCollectionResponse extends BaseCollectionResponse { constructor(data?: unknown); data?: CityBodyStructure[]; }