export declare type Dist = { name: string; postalCode: string; }; export declare type City = { city: string; dists: Dist[]; };