import { AutoEncoder } from '@simonbackx/simple-encoding'; import { OrganizationRecordsConfiguration } from './members/OrganizationRecordsConfiguration.js'; export declare class DefaultAgeGroup extends AutoEncoder { id: string; names: string[]; description: string; minAge: number | null; maxAge: number | null; /** * Members registered in this age group, will be assigned to this membership type by default */ defaultMembershipTypeId: string | null; minimumRequiredMembers: number; /** * Limit this default age group to specific organizations */ organizationTagIds: string[] | null; get name(): string; recordsConfiguration: OrganizationRecordsConfiguration; isEnabledForTags(tags: string[] | null): boolean; } //# sourceMappingURL=DefaultAgeGroup.d.ts.map