import { type CommonAction } from "@iflyrpa/share"; import { z } from "zod"; import { DouyinGetCommentReplyListParamsSchema } from "./schema"; export type DouyinGetCommentReplyListParams = z.infer; export { DouyinGetCommentReplyListParamsSchema } from "./schema"; export interface ReplyUser { uid: string; nickname: string; avatar_thumb?: { url_list: string[]; }; } export interface ReplyItem { cid: string; text: string; create_time: number; digg_count: number; user: ReplyUser; reply_to_userid?: string; reply_to_username?: string; } export interface DouyinCommentReplyListResponse { status_code: number; status_msg: string; reply_comment_list?: ReplyItem[]; has_more?: boolean; cursor?: number; total_count?: number; } export type DouyinGetCommentReplyListAction = CommonAction; export declare const douyinGetCommentReplyList: DouyinGetCommentReplyListAction;