import { NotificationType } from '../enums/notification-type.enum';
export declare class SendNotificationDto {
    type: NotificationType;
    title: string;
    body: string;
    target_role_ids?: number[];
    target_user_ids?: number[];
    reference_id?: number;
    reference_type?: string;
    is_urgent?: boolean;
    requires_action?: boolean;
    link_url?: string;
    payload?: Record<string, any>;
    email_subject?: string;
    email_html?: string;
    whatsapp_message?: string;
}
