/** Represents a city */
export interface City {
    /** The identifier of the city */
    administrationCode?: string;
    /** The name of the city */
    name: string;
    /** The zip code of the city */
    zipCode: string;
}
//# sourceMappingURL=City.d.ts.map