import { type CommonAction } from "@iflyrpa/share"; import { z } from "zod"; import { DouyinGetHotParamsSchema } from "./schema"; export type DouyinGetHotParams = z.infer; export { DouyinGetHotParamsSchema } from "./schema"; export interface Hot { sentence_id: string; group_id: string; word: string; hot_value: number; word_cover: { url_list: string[]; }; video_count: number; word_type: number; } export interface DouyinHotResponse { status_code: number; status_msg: string; sentences?: Hot[]; all_sentences?: Hot[]; extra?: { logid: string; now: number; }; } export type DouyinGetHotAction = CommonAction; export declare const douyinGetHot: DouyinGetHotAction;