import { type CommonAction } from "@iflyrpa/share"; import type { ActiomCommonParams } from "../../types"; export interface xiaohongshuWebNoteFeedParams extends ActiomCommonParams { source_note_id: string; xsec_token: string; } export interface FeedResponse { code: number; success: boolean; msg: string; data: { items: FeedRespomseDetail[]; } | null; } export interface FeedRespomseDetail { note_card: Record; } export type PublishAction = CommonAction>; export declare const xiaohongshuWebNoteFeed: PublishAction;