import { HistoryActionType, HistoryEntityInterface } from '@operato/typeorm-history'; import { User } from '@things-factory/auth-base'; import { Domain } from '@things-factory/shell'; import { Kpi, KpiStatus, KpiPeriodType } from './kpi'; import { KpiScores } from './kpi-grade.types'; export declare class KpiHistory implements HistoryEntityInterface { readonly id: string; version?: number; domain?: Domain; domainId?: string; name: string; description?: string; formula?: string; active?: boolean; state?: KpiStatus; thumbnail?: string; grades?: KpiScores; weight?: number; periodType: KpiPeriodType; createdAt?: Date; updatedAt?: Date; deletedAt?: Date; creator?: User; creatorId?: string; updater?: User; updaterId?: string; originalId: string; action: HistoryActionType; }