import type { CommonAction } from "@iflyrpa/share"; import { ActiomCommonParams } from "../../types"; /** * 作品声明 * 1:引用站内 * 3:引用AI * 4:取材网络 * 5:个人观点,仅供参考 * 6:虚构演绎,故事经历 * 7:投资观点,仅供参考 * 8:健康医疗分享,仅供参考 */ type DeclarationType = 1 | 3 | 4 | 5 | 6 | 7 | 8; export interface WeitoutiaoPublishParams extends ActiomCommonParams { content: string; banners?: string[]; address?: string; declaration?: DeclarationType; } export type PublishAction = CommonAction; export declare const weitoutiaoPublish: PublishAction; export {};