import { type CommonAction } from "@iflyrpa/share"; import { z } from "zod"; import { DouyinGetCommentListParamsSchema } from "./schema"; export type DouyinGetCommentListParams = z.infer; export { DouyinGetCommentListParamsSchema } from "./schema"; export interface CommentUser { uid: string; nickname: string; avatar_thumb?: { url_list: string[]; }; } export interface CommentItem { cid: string; text: string; create_time: number; digg_count: number; reply_comment_total: number; user: CommentUser; reply_to_reply_id?: string; } export interface DouyinCommentListResponse { status_code: number; status_msg: string; comment_info_list?: CommentItem[]; has_more?: boolean; cursor?: number; total_count?: number; has_vcd_filter?: number; } export type DouyinGetCommentListAction = CommonAction; export declare const douyinGetCommentList: DouyinGetCommentListAction;