export declare class CreateNotificationDto {
    userId: string;
    title: string;
    message: string;
    type?: string;
}
