import { z } from "zod"; declare const _default: z.ZodObject<{ type: z.ZodLiteral<"participant_added">; data: z.ZodObject<{ conversationId: z.ZodString; participant: z.ZodObject<{ name: z.ZodOptional; pictureUrl: z.ZodOptional; data: z.ZodOptional>; attributes: z.ZodOptional>; id: z.ZodString; createdAt: z.ZodString; updatedAt: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; createdAt: string; updatedAt: string; name?: string | undefined; pictureUrl?: string | undefined; data?: Record | undefined; attributes?: Record | undefined; }, { id: string; createdAt: string; updatedAt: string; name?: string | undefined; pictureUrl?: string | undefined; data?: Record | undefined; attributes?: Record | undefined; }>; }, "strip", z.ZodTypeAny, { conversationId: string; participant: { id: string; createdAt: string; updatedAt: string; name?: string | undefined; pictureUrl?: string | undefined; data?: Record | undefined; attributes?: Record | undefined; }; }, { conversationId: string; participant: { id: string; createdAt: string; updatedAt: string; name?: string | undefined; pictureUrl?: string | undefined; data?: Record | undefined; attributes?: Record | undefined; }; }>; }, "strip", z.ZodTypeAny, { type: "participant_added"; data: { conversationId: string; participant: { id: string; createdAt: string; updatedAt: string; name?: string | undefined; pictureUrl?: string | undefined; data?: Record | undefined; attributes?: Record | undefined; }; }; }, { type: "participant_added"; data: { conversationId: string; participant: { id: string; createdAt: string; updatedAt: string; name?: string | undefined; pictureUrl?: string | undefined; data?: Record | undefined; attributes?: Record | undefined; }; }; }>; export default _default;