export declare class CreateNotificationDto {
    user_id: number;
    title: string;
    message: string;
    data?: any;
}
