import { type CommonAction } from "@iflyrpa/share"; import type { ActiomCommonParams } from "../../types"; export interface GetShipinhaoCommentListParams extends ActiomCommonParams { lastBuff?: string; exportId?: string; } export interface CommentListResponse { errCode: number; errMsg: string; data: { list: CommentDetail[]; totalCount: number; hasMore: boolean; }; } export interface CommentDetail { commentId: string; content: string; createTime: number; likeCount: number; replyCount: number; userName: string; userAvatar: string; } export type GetCommentListAction = CommonAction; export declare const getShipinhaoCommentList: GetCommentListAction;