import { PerformerEntity } from './performer.entity'; import { ReportingLineDataEntity } from '../views/reporting-line/reporting-line-data.entity'; import { PerformerOptions } from './performer-options'; import { ComponentPerformer } from '../views/component-performer/component-performer.entity'; import { MatrixDataInfoEntity } from '../views/matrix-performer/entitis/matrix-data-info.entity'; import { ActivityExecutorParticipant } from "../views/activity-executor-performer/entities/activity-executor.participant"; import { OrganizationParticipantExpression } from '../../../domain/entities/organization-participant-expression'; import { VariablePerformerEntity } from './variable-performer.entity'; export declare class PerformerInfo { constructor(); performers: PerformerEntity[]; variablePerformers: VariablePerformerEntity[]; components: ComponentPerformer[]; reportingLines: ReportingLineDataEntity[]; matrixParticipants: MatrixDataInfoEntity[]; activityExecutors: ActivityExecutorParticipant[]; organizationParticipants: OrganizationParticipantExpression[]; options: PerformerOptions; isAllScope: boolean; }