import { type CommonAction } from "@iflyrpa/share"; import type { ActiomCommonParams } from "../../types"; export interface xiaohongshuWebCommentActionParams extends ActiomCommonParams { note_id: string; comment_id: string; action: "like" | "dislike"; } export interface ActionResponse { code: number; success: boolean; msg: string; } export type PublishAction = CommonAction>; export declare const xiaohongshuWebCommentAction: PublishAction;