import { ResourceIntroduction } from './resourceIntroduction.entity'; import { ResourceIntroducer } from './resourceIntroducer.entity'; import { Resource } from './resource.entity'; export declare class ResourceGroup { id: number; name: string; description: string | null; retrainingMaxAgeDays: number | null; retrainingMaxInactivityDays: number | null; retrainingBlocksAccess: boolean; isHidden: boolean; createdAt: Date; updatedAt: Date; introductions: ResourceIntroduction[]; introducers: ResourceIntroducer[]; resources: Resource[]; }