import { Domain, ListParam } from '@things-factory/shell'; import { User } from '@things-factory/auth-base'; import { KpiScope } from './kpi-scope'; import { KpiScopeList } from './kpi-scope-type'; export declare class KpiScopeQuery { kpiScope(id: string, context: ResolverContext): Promise; kpiScopes(params: ListParam, context: ResolverContext): Promise; domain(kpiScope: KpiScope): Promise; updater(kpiScope: KpiScope): Promise; creator(kpiScope: KpiScope): Promise; }