import { type CommonAction } from "@iflyrpa/share"; import { z } from "zod"; import type { ActiomCommonParams } from "../../types"; export interface GetBaijiahaoConfigParams extends ActiomCommonParams { token: string; } export declare const ConfigDataSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; detail: z.ZodString; is_enable: z.ZodNumber; publish_num_left: z.ZodOptional>; }, z.core.$strip>; export type ConfigData = z.infer; export type PublishAction = CommonAction; export declare const getBaijiahaoConfig: PublishAction;