import { EntitySubscriberInterface, UpdateEvent } from 'typeorm'; import { HistoryEntitySubscriber } from '@operato/typeorm-history'; import { Board } from './board.js'; import { BoardHistory } from './board-history.js'; export declare class BoardSubscriber implements EntitySubscriberInterface { listenTo(): typeof Board; beforeUpdate(event: UpdateEvent): Promise; afterUpdate(event: UpdateEvent): Promise; } export declare class BoardHistoryEntitySubscriber extends HistoryEntitySubscriber { get entity(): typeof Board; get historyEntity(): typeof BoardHistory; afterInsert(event: any): Promise; afterUpdate(event: any): Promise; }