import { Domain } from '@things-factory/shell'; import { KpiMetric } from '../kpi-metric/kpi-metric'; import { KpiPeriodType } from '../kpi/kpi'; import { User } from '@things-factory/auth-base'; export declare class KpiMetricValue { id: string; domain?: Domain; domainId?: string; metric: KpiMetric; metricId: string; value: number; unit?: string; valueDate: string; periodType: KpiPeriodType; org?: string; meta?: any; createdAt?: Date; updatedAt?: Date; creator?: User; creatorId?: string; updater?: User; updaterId?: string; }