TimeEventSchema: z.ZodObject<
    {
        annotation: z.ZodObject<
            {
                attributes: z.ZodRecord<z.ZodString, z.ZodAny>;
                description: z.ZodString;
            },
            "strip",
            z.ZodTypeAny,
            { attributes: Record<string, any>; description: string },
            { attributes: Record<string, any>; description: string },
        >;
        time: z.ZodNumber;
    },
    "strip",
    z.ZodTypeAny,
    {
        annotation: { attributes: Record<string, any>; description: string };
        time: number;
    },
    {
        annotation: { attributes: Record<string, any>; description: string };
        time: number;
    },
>