import { AfterInsert } from "typeorm"; export declare enum ESubscriberType { create = "Create", update = "Update", delete = "Delete" } export declare const generateSubscriberName: (name: String, type: ESubscriberType) => string; export declare const getDecoratorByOperationType: (type: ESubscriberType) => typeof AfterInsert;