import { UserType, ChangeType } from "../interfaces/notification.interface";
export declare class TriggerNotificationDto {
    actorId: number;
    actorType: UserType;
    changeType: ChangeType;
    entityId: number;
    message?: string;
    title?: string;
}
