import { KpiValue, KpiValueInputType } from './kpi-value'; export declare class NewKpiValue { kpiId: string; version: number; valueDate: string; value: number; score?: number; meta?: any; kpiOrgScopeId?: string; org?: string; group?: string; inputType?: KpiValueInputType; source?: string; } export declare class KpiValuePatch { id?: string; kpiId?: string; version?: number; valueDate?: string; value?: number; score?: number; meta?: any; kpiOrgScopeId?: string; org?: string; group?: string; inputType?: KpiValueInputType; source?: string; cuFlag?: string; } export declare class KpiValueList { items: KpiValue[]; total: number; }