import { Comment } from "../interfaces/models/Comment";
import { EntityCommentsTree } from "../interfaces/EntityCommentsTree";
export declare const addCommentsToTree: (setEntityCommentsTree: (value: React.SetStateAction<EntityCommentsTree>) => void, newComments: Comment[] | undefined, newlyAdded?: boolean) => void;
