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