export declare const scanRetryMaxCount = 30; export declare const QuotaType: { Normal: string; ProductActivity: string; }; export interface QuotaItem { original_quota: number; quota: number; str_date: string; } export interface QuotaDetail { quota_item_list: QuotaItem[]; quota_type: string; } /** * 生成微信话题 HTML 代码 * @param topics - 话题数组 * @returns 生成的 HTML 字符串 */ export declare function genTopicHTML(topics: string[]): string;