export declare class SendNotificationDto {
    user_ids: number[];
    title: string;
    message: string;
    data?: any;
}
