import type { EventFeatureBaseConfig } from "./feature.base"; declare const featureType: "invite"; export interface FeatureInviteConfig { /** 邀请玩法配置分享链接 */ share_url: string; } export type EventFeatureConfigOfInvite = EventFeatureBaseConfig & { feature_type: typeof featureType; config: FeatureInviteConfig; }; export declare const EventFeatureConfigOfInviteValidator: import("@seayoo-web/validator").ObjectValidator; export {};