import { CommentOverview, CommentItem } from "../../common/interface"; export declare class JackeryComment { strings: any; hostElement: HTMLElement; /** * 评论关联id */ cid: string; /** * 评论类型 1:商品评论 */ ctype: string; /** * 店铺id */ shopid: string; /** * 评论图片限制数量 */ imgLimit: string; isLoading: boolean; rateLoading: boolean; currentPage: number; limit: number; isLoadingMore: boolean; isEnd: boolean; commentOverview: CommentOverview; commentList: CommentItem[]; isSubmitting: boolean; sortType: number | null; rating: number | null; customEvent(event: CustomEvent): void; ratingFilterEvent(event: CustomEvent): void; sortFilterEvent(event: CustomEvent): void; commentOverviewRef?: any; componentWillLoad(): Promise; handleSetHeaderMsg(): void; getRatingOverview(): void; handleLoadMore(): void; getCommentList(params?: {}, loading?: boolean): void; private renMain; render(): any; }