import 'server-only'; import Model, { ModelError } from './model'; import type { HestiaCountyData } from './place.types'; export default class County extends Model { static findOne({ urlLabel, }: { urlLabel: string; }): Promise<{ result: County | null; errors: ModelError[] | null; }>; get id(): string | null; get name(): string | null; get urlLabel(): string | null; get polygon(): string | null; get lat(): number | null; get lng(): number | null; get placeData(): HestiaCountyData | undefined; } //# sourceMappingURL=county.d.ts.map