import * as v from "valibot"; /** * Sent by the host when the viewing user's profile changes while the block is mounted. */ export declare const currentUserChangedMessageSchema: v.ObjectSchema<{ readonly type: v.LiteralSchema<"currentUserChanged", undefined>; readonly currentUser: v.ObjectSchema<{ readonly object: v.LiteralSchema<"user", undefined>; readonly id: v.StringSchema; readonly name: v.OptionalSchema, undefined>; readonly avatar_url: v.NullableSchema, undefined>; readonly type: v.LiteralSchema<"person", undefined>; readonly person: v.ObjectSchema<{ readonly email: v.StringSchema; }, undefined>; }, undefined>; }, undefined>; export type CurrentUserChangedMessage = v.InferOutput; //# sourceMappingURL=currentUserChanged.d.ts.map