import { ILocationV2 } from "./Location"; export interface ICityV2 { id: string; name: string; country: string; countryCode: string; state: string; displayPriority: number; image: string; locations?: ILocationV2[]; } //# sourceMappingURL=City.d.ts.map