import type { EventFeatureBaseConfig } from "./feature.base"; declare const featureType: "ugc_like"; export interface FeatureUgcLikeConfig { /** 关联的投稿玩法 ID */ ugc_feature_id: number; } export type EventFeatureConfigOfUgcLike = EventFeatureBaseConfig & { feature_type: typeof featureType; config: FeatureUgcLikeConfig; }; export declare const EventFeatureConfigOfUgcLikeValidator: import("@seayoo-web/validator").ObjectValidator; export {};