import { ICity } from "./city"; export interface IMarket { id: string; cities: ICity[]; }