import React from 'react';
import { Reaction } from 'softchatjs-core';

type ReactionProps = {
    reactions: Reaction[];
    position: "left" | "right";
    conversationId: string;
    messageId: string;
    chatUserId: string;
    recipientId: string;
    layout?: 'stacked';
};
declare function Reactions(props: ReactionProps): React.JSX.Element;

export { Reactions as default };
