import { IdNNameRecord } from '../../../../entities/core-entities/common/index.js'; /** * CityBodyStructure class is responsible for * deserializing the response from the metadata * API to a city. */ export declare class CityBodyStructure { cityId?: number; name?: string; country?: IdNNameRecord; state?: IdNNameRecord; }