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