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<RawLiveReaction, 'userId' | 'referenceId' | 'occurredAt'>;
        type CreateLiveReactionResponse = {
            addedIds: string[];
        };
    }
}
//# sourceMappingURL=liveReaction.d.ts.map