import { type CommonAction } from "@iflyrpa/share"; import type { ActiomCommonParams } from "../../types"; export interface xiaohongshuWebMsgReadParams extends ActiomCommonParams { type: "mentions" | "likes" | "connections"; } export interface ReadResponse { code: number; success: boolean; msg: string; } export type PublishAction = CommonAction>; export declare const xiaohongshuWebMsgRead: PublishAction;