import { KpiScope, ScopeType } from './kpi-scope'; export declare class NewKpiScope { level: number; name: string; description?: string; scopeType: ScopeType; parentLevel?: number; displayOrder: number; validValues?: string[]; validationPattern?: string; active: boolean; includeInStatistics: boolean; showInDashboard: boolean; metadata?: any; } export declare class KpiScopePatch { id?: string; level: number; name: string; description?: string; scopeType: ScopeType; parentLevel?: number; displayOrder: number; validValues?: string[]; validationPattern?: string; active: boolean; includeInStatistics: boolean; showInDashboard: boolean; metadata?: any; cuFlag?: string; } export declare class KpiScopeList { items: KpiScope[]; total: number; }