import z from 'zod'; export declare const geolocation: z.ZodObject<{ city: z.ZodOptional; country: z.ZodOptional; region: z.ZodOptional; countryRegion: z.ZodOptional; latitude: z.ZodOptional; longitude: z.ZodOptional; }, "strip", z.ZodTypeAny, { city?: string | undefined; country?: string | undefined; region?: string | undefined; countryRegion?: string | undefined; latitude?: string | undefined; longitude?: string | undefined; }, { city?: string | undefined; country?: string | undefined; region?: string | undefined; countryRegion?: string | undefined; latitude?: string | undefined; longitude?: string | undefined; }>; export type Geolocation = z.infer;