import type { EventFeatureBaseConfig } from "./feature.base"; declare const featureType: "weixin_subscribe"; export interface FeatureSubscribeConfig { /** 一组微信订阅消息模版 ID */ weixin_template_ids: string[]; } export type EventFeatureConfigOfSubscribe = EventFeatureBaseConfig & { feature_type: typeof featureType; config: FeatureSubscribeConfig; }; export declare const EventFeatureConfigOfSubscribeValidator: import("@seayoo-web/validator").ObjectValidator; export {};