import { Domain, ListParam } from '@things-factory/shell'; import { User } from '@things-factory/auth-base'; import { KpiMetricValue } from './kpi-metric-value'; import { KpiMetricValueList } from './kpi-metric-value-type'; import { KpiMetric } from '../kpi-metric/kpi-metric'; export declare class KpiMetricValueQuery { kpiMetricValues(params: ListParam, context: ResolverContext): Promise; kpiMetricValue(id: string, context: ResolverContext): Promise; domain(metricValue: KpiMetricValue): Promise; updater(metricValue: KpiMetricValue): Promise; creator(metricValue: KpiMetricValue): Promise; metric(metricValue: KpiMetricValue): Promise; }