import { z } from "zod"; export declare const NewSpaceUserEvent: z.ZodObject<{ spaceUserId: z.ZodString; name: z.ZodString; playUri: z.ZodString; isLogged: z.ZodBoolean; availabilityStatus: z.ZodNumber; tags: z.ZodArray; cameraState: z.ZodBoolean; microphoneState: z.ZodBoolean; screenSharingState: z.ZodBoolean; megaphoneState: z.ZodBoolean; uuid: z.ZodString; chatID: z.ZodOptional; showVoiceIndicator: z.ZodBoolean; }, "strip", z.ZodTypeAny, { name: string; uuid: string; tags: string[]; isLogged: boolean; availabilityStatus: number; spaceUserId: string; playUri: string; cameraState: boolean; microphoneState: boolean; screenSharingState: boolean; megaphoneState: boolean; showVoiceIndicator: boolean; chatID?: string | undefined; }, { name: string; uuid: string; tags: string[]; isLogged: boolean; availabilityStatus: number; spaceUserId: string; playUri: string; cameraState: boolean; microphoneState: boolean; screenSharingState: boolean; megaphoneState: boolean; showVoiceIndicator: boolean; chatID?: string | undefined; }>; export type NewSpaceUserEvent = z.infer;