import { z } from "zod"; export declare const isParticipantProximityMeetingEvent: z.ZodObject<{ user: z.ZodObject<{ playerId: z.ZodNumber; name: z.ZodString; userUuid: z.ZodString; availabilityStatus: z.ZodString; outlineColor: z.ZodOptional; position: z.ZodObject<{ x: z.ZodNumber; y: z.ZodNumber; }, "strip", z.ZodTypeAny, { x: number; y: number; }, { x: number; y: number; }>; variables: z.ZodMap; chatID: z.ZodNullable>; }, "strip", z.ZodTypeAny, { name: string; position: { x: number; y: number; }; playerId: number; variables: Map; userUuid: string; availabilityStatus: string; outlineColor?: number | undefined; chatID?: string | null | undefined; }, { name: string; position: { x: number; y: number; }; playerId: number; variables: Map; userUuid: string; availabilityStatus: string; outlineColor?: number | undefined; chatID?: string | null | undefined; }>; }, "strip", z.ZodTypeAny, { user: { name: string; position: { x: number; y: number; }; playerId: number; variables: Map; userUuid: string; availabilityStatus: string; outlineColor?: number | undefined; chatID?: string | null | undefined; }; }, { user: { name: string; position: { x: number; y: number; }; playerId: number; variables: Map; userUuid: string; availabilityStatus: string; outlineColor?: number | undefined; chatID?: string | null | undefined; }; }>; export type ParticipantProximityMeetingEvent = z.infer;