export {}; declare global { namespace Amity { type RawLiveReaction = { userId: string; referenceId: string; referencePublicId: string; referenceType: string; reactionName: string; occurredAt: string; }; type InternalLiveReaction = RawLiveReaction; type LiveReaction = InternalLiveReaction; type CreateLiveReactionRequest = Omit; type CreateLiveReactionResponse = { addedIds: string[]; }; } } //# sourceMappingURL=liveReaction.d.ts.map