import { CommentDataService } from "./comment_data.service"; import { SearchResultDto } from "../common/dto/search_result.dto"; export declare class CommentDataController { protected service: CommentDataService; constructor(service: CommentDataService); listComment(params: any, query: any): Promise; addComment(params: any, body: any): Promise; }