import type { EventFeatureBaseConfig } from "./feature.base"; declare const featureType: "comment"; export interface FeatureCommentConfig { /** 活动配置的弹幕信息,用于快捷选择 */ comments: string[]; /** 发送频率限制,单位:秒 */ send_rate: number; } export type EventFeatureConfigOfComment = EventFeatureBaseConfig & { feature_type: typeof featureType; config: FeatureCommentConfig; }; export declare const EventFeatureConfigOfCommentValidator: import("@seayoo-web/validator").ObjectValidator; export {};