import { z } from 'zod'; export declare const GeolocationSchema: z.ZodObject<{ /** * The latitude associated with a geolocation. */ latitude: z.ZodNumber; /** * The longitude associated with a geolocation. */ longitude: z.ZodNumber; }, "strip", z.ZodTypeAny, { latitude: number; longitude: number; }, { latitude: number; longitude: number; }>; export type Geolocation = z.infer;