import { OpHubSendNotificationService } from './op-hub-send-notification.service';
export declare class OpHubSendNotificationController {
    private readonly sendNotificationService;
    constructor(sendNotificationService: OpHubSendNotificationService);
    sendNotificationToProfile(from_staff_id: string, to_staff_id: string, room_id: string, hospital_id: any): Promise<{
        status: string;
        messege: string;
        message?: undefined;
    } | {
        status: string;
        message: string;
        messege?: undefined;
    }>;
}
