import { Entity } from "../../interfaces/models/Entity";
import { Comment } from "../../interfaces/models/Comment";
import { ReactionType } from "../../interfaces/models/Reaction";
export interface AddReactionProps {
    targetType: "entity" | "comment";
    targetId: string;
    reactionType: ReactionType;
}
declare function useAddReaction(): (props: AddReactionProps) => Promise<Entity | Comment>;
export default useAddReaction;
