import { EntitySubscriberInterface, UpdateEvent } from 'typeorm'; import { PageEntity } from '../entities/dashboard.entity'; export declare class PageEntitySubscriber implements EntitySubscriberInterface { listenTo(): typeof PageEntity; beforeUpdate(event: UpdateEvent): void; }