import { type CommonAction } from "@iflyrpa/share"; import { z } from "zod"; import { DouyinCreateCommentReplyParamsSchema } from "./schema"; export type DouyinCreateCommentReplyParams = z.infer; export { DouyinCreateCommentReplyParamsSchema } from "./schema"; export interface DouyinCreateCommentReplyResponse { status_code: number; status_msg: string; comment?: { cid: string; text: string; create_time: number; }; } export type DouyinCreateCommentReplyAction = CommonAction; export declare const douyinCreateCommentReply: DouyinCreateCommentReplyAction;