import { type CommonAction } from "@iflyrpa/share"; import type { ActiomCommonParams } from "../../types"; export interface searchXhsConnectionsParams extends ActiomCommonParams { num: number; cursor: string | null; } export interface ConnectionsResponse { code: number; success: boolean; msg: string; data: ConnectionsDetail; } export interface ConnectionsDetail { message_list: { title: string; tag: string; tag_type: string; id: string; type: string; user: { xsec_token: string; userid: string; nickname: string; images: string; fstatus: string; red_official_verify_type: number; }; time: number; score: number; track_type: string; }[]; has_more: boolean; strCursor: string; } export type PublishAction = CommonAction>; export declare const searchXhsWebConnections: PublishAction;