import { ICommentLikeService } from "../../../stores"; import { Comment, CommentLike, ReactionType } from "../../../models"; export declare class CommentLikeService implements ICommentLikeService { constructor(); getCommentLike: (topicId: string) => Promise; toggleLike: (topicId: string, commentId: string, isLike: boolean) => Promise; socialReacts: (topicId: string, commentId: string, isReacts: boolean, reactionType: ReactionType) => Promise; addComment: (comment: Comment) => Promise; updateComment: (comment: Comment) => Promise; deleteComment: (comment: Comment) => Promise; markBestReply: (topicId: string, commentId: string) => Promise; }