import { User } from '@things-factory/auth-base'; import { Domain } from '@things-factory/shell'; import { Kpi, KpiPeriodType } from '../kpi/kpi'; import { KpiOrgScope } from '../kpi-org-scope/kpi-org-scope'; export declare enum KpiValueInputType { MANUAL = "MANUAL", AUTO = "AUTO" } export declare class KpiValue { readonly id: string; domain?: Domain; domainId?: string; kpi: Kpi; kpiId: string; version: number; valueDate: string; value: number; score?: number; group?: string; kpiOrgScope?: KpiOrgScope; kpiOrgScopeId?: string; inputType?: KpiValueInputType; source?: string; meta?: any; periodType: KpiPeriodType; createdAt?: Date; updatedAt?: Date; creator?: User; creatorId?: string; updater?: User; updaterId?: string; }