export declare enum GroupType { /** * registration as a member at an organization - for a specific age group (most of the time) */ Membership = "Membership", /** * Waiting list of any other group */ WaitingList = "WaitingList", /** * Activity */ EventRegistration = "EventRegistration" } export declare function getGroupTypeName(type: GroupType): string; //# sourceMappingURL=GroupType.d.ts.map