import { UserAggregate } from '../User/UserAggregate'; export declare const OrganizationState: { readonly REGISTERED: 0; readonly ACTIVE: 1; readonly SOFT_DELETE: 2; }; export type OrganizationStateType = typeof OrganizationState[keyof typeof OrganizationState]; export declare class OrganizationAggregate { id: string; name: string; contactfname: string; contactlname: string; contactphone: string; contactemail: string; state: OrganizationStateType; regdate: Date; updatedate: Date; url: string | null; userinorg: number; maxOrganizationalDecks: number | null; users: UserAggregate[]; } //# sourceMappingURL=OrganizationAggregate.d.ts.map