import type { EventFeatureBaseConfig } from "./feature.base"; declare const featureType: "team"; export interface FeatureTeamConfig { /** 队伍最大成员数 */ max_members: number; /** 队伍最小成员数 */ min_members: number; } export type EventFeatureConfigOfTeam = EventFeatureBaseConfig & { feature_type: typeof featureType; config: FeatureTeamConfig; }; export declare const EventFeatureConfigOfTeamValidator: import("@seayoo-web/validator").ObjectValidator; export {};