import { AutoEncoder } from '@simonbackx/simple-encoding'; import type { Country } from '@stamhoofd/types/Country'; import { Province } from './Province.js'; export declare class City extends AutoEncoder { id: string; name: string; province: Province; parentCityId: string | null; country: Country; } //# sourceMappingURL=City.d.ts.map