import z from 'zod'; export declare const geolocationPositionSchema: z.ZodObject<{ coords: z.ZodObject<{ latitude: z.ZodNumber; longitude: z.ZodNumber; accuracy: z.ZodNumber; altitude: z.ZodNullable>; altitudeAccuracy: z.ZodNullable>; heading: z.ZodNullable>; speed: z.ZodNullable>; floorLevel: z.ZodNullable>; }, z.core.$strip>; timestamp: z.ZodNumber; }, z.core.$strip>; export declare const positionSchema: z.ZodObject<{ latitude: z.ZodNumber; longitude: z.ZodNumber; floor: z.ZodOptional; accuracy: z.ZodOptional; heading: z.ZodNullable>; timestamp: z.ZodOptional; }, z.core.$strip>;