import { z } from "zod"; export declare const GeoLocationPoint: z.ZodObject<{ pointLongitude: z.ZodNumber; pointLatitude: z.ZodNumber; }, z.core.$strip>; export declare const GeoLocationBox: z.ZodObject<{ westBoundLongitude: z.ZodNumber; eastBoundLongitude: z.ZodNumber; southBoundLatitude: z.ZodNumber; northBoundLatitude: z.ZodNumber; }, z.core.$strip>; export declare const GeoLocationPolygonItem: z.ZodObject<{ polygonPoint: z.ZodOptional>; inPolygonPoint: z.ZodOptional>; }, z.core.$strip>; export declare const GeoLocation: z.ZodObject<{ geoLocationPlace: z.ZodOptional; geoLocationPoint: z.ZodOptional>; geoLocationBox: z.ZodOptional>; geoLocationPolygon: z.ZodOptional>; inPolygonPoint: z.ZodOptional>; }, z.core.$strip>>>; }, z.core.$strip>; export declare const GeoLocations: z.ZodArray; geoLocationPoint: z.ZodOptional>; geoLocationBox: z.ZodOptional>; geoLocationPolygon: z.ZodOptional>; inPolygonPoint: z.ZodOptional>; }, z.core.$strip>>>; }, z.core.$strip>>; export type GeoLocationPoint = z.infer; export type GeoLocationBox = z.infer; export type GeoLocationPolygonItem = z.infer; export type GeoLocation = z.infer; export type GeoLocations = z.infer;