import { EntitySubscriberInterface, UpdateEvent } from 'typeorm'; import { PlayGroup } from './play-group.js'; export declare class PlayGroupSubscriber implements EntitySubscriberInterface { listenTo(): typeof PlayGroup; afterUpdate(event: UpdateEvent): Promise; }