import { Comment as CommentType } from "./models/Comment";
export type EntityCommentsTree = {
    [id: string]: {
        comment: CommentType;
        replies: {
            [id: string]: CommentType & {
                new: boolean;
            };
        };
        new: boolean;
        failed?: boolean;
    };
};
