import { type CommonAction } from "@iflyrpa/share"; import type { ActiomCommonParams } from "../../types"; export interface CreateShipinhaoCommentParams extends ActiomCommonParams { content: string; exportId: string; rootCommentId?: string; replyCommentId?: string; } export interface CreateCommentResponse { errCode: number; errMsg: string; data?: { commentId: string; createTime: number; success: boolean; }; } export type CreateCommentAction = CommonAction; export declare const createShipinhaoComment: CreateCommentAction;