import { NotificationType } from '../entities/notification.entity.js';
export declare class CreateNotificationDto {
    userId: string;
    type: NotificationType;
    title: string;
    message: string;
    link?: string;
}
