/** Represent a city */
export interface City {
    /** Name of the city */
    city: string;
    /** INSEE code of the city */
    inseeCode: string;
    /** Locality (subset of a city) */
    locality?: string;
    /** Zip code of the city */
    zipCode: string;
}
//# sourceMappingURL=City.d.ts.map