import { City } from "./City"; import { Country } from "./Country"; export declare class Region { id: number; country: Country; name: string; status: number; cities: City[]; }