import { KpiValue } from './kpi-value'; import { NewKpiValue, KpiValuePatch } from './kpi-value-type'; export declare class KpiValueMutation { createKpiValue(kpiValue: NewKpiValue, context: ResolverContext): Promise; createMultipleKpiValue(values: NewKpiValue[], context: ResolverContext): Promise; updateKpiValue(id: string, patch: KpiValuePatch, context: ResolverContext): Promise; updateMultipleKpiValue(patches: KpiValuePatch[], context: ResolverContext): Promise; deleteKpiValue(id: string, context: ResolverContext): Promise; deleteKpiValues(ids: string[], context: ResolverContext): Promise; importKpiValues(kpiValues: KpiValuePatch[], context: ResolverContext): Promise; recalculateScoresForKpi(kpiId: string, context: ResolverContext): Promise; recalculateKpiValue(id: string, context: ResolverContext): Promise; }