import { HistoryEntitySubscriber } from '@operato/typeorm-history'; import { Kpi } from './kpi'; import { KpiHistory } from './kpi-history'; export declare class KpiHistoryEntitySubscriber extends HistoryEntitySubscriber { get entity(): typeof Kpi; get historyEntity(): typeof KpiHistory; afterInsert(event: any): Promise; afterUpdate(event: any): Promise; }