import { AutomateTask } from "@iflyrpa/share"; import type { SearchAccountInfoParams } from "."; import { type SearchAccountInfoResponse } from "./types"; /** * 视频号账号数据采集 * * 参考《API接口文档-抖音和视频号数据采集》 2.1: * POST /cgi-bin/mmfinderassistant-bin/auth/auth_data * * auth_data 返回账号基础信息(粉丝数、作品数)。 * 昨日数据(净增关注/新增播放/喜欢/评论)需调用专门的统计接口, * auth_data 本身不返回,因此这些字段降级为 null。 */ export declare function getShipinhaoData(_task: AutomateTask, params: SearchAccountInfoParams): Promise;