import { EntityManager } from 'typeorm'; import { Domain } from '@things-factory/shell'; import { User } from '@things-factory/auth-base'; export declare class KpiOrgScope { readonly id: string; domain?: Domain; domainId?: string; entityType: string; entityId: string; entityName: string; org?: string; scope01?: string; scope02?: string; scope03?: string; scope04?: string; scope05?: string; createdAt?: Date; updatedAt?: Date; creator?: User; creatorId?: string; updater?: User; updaterId?: string; getReferencedEntity(entityManager: EntityManager): Promise; validateEntityReference(entityManager: EntityManager): Promise; get displayName(): string; }