import { Role } from '../../entity-module/roles'; import { BaseEntity } from './base.entity'; import { Organization } from './organization.entity'; import { User } from './user.entity'; export declare class Member extends BaseEntity { organizationId: string; organization: Organization; userId: string; user: User; roles: Role[]; }