import { SendNotificationService } from './send-notification.service';
export declare class SendNotificationController {
    private readonly sendNotificationService;
    constructor(sendNotificationService: SendNotificationService);
    findAll(abhaAddress: string, title: string, body: string, module: any): Promise<{
        status: string;
        message: string;
    }>;
    sendNotificationToProfile(patient_id: string, title: string, body: string, module: any): Promise<{
        status: string;
        message: string;
    }>;
    getcountForProfile(patient_id: any, user_id: any): Promise<{
        status: string;
        message: string;
        details: any;
    }>;
    getnotificationForProfile(patient_id: any, user_id: any): Promise<{
        status: string;
        message: string;
        details: any;
    }>;
    getcountForAbhaAddress(abhaAddress: any, user_id: any): Promise<{
        status: string;
        message: string;
        details: any;
    }>;
    getnotificationForAbhaAddress(abhaAddress: any, user_id: any): Promise<{
        status: string;
        message: string;
        details: any;
    }>;
    markReaNnotificationForAbhaAddress(abhaAddress: any, user_id: any, id: any): Promise<{
        status: string;
        message: string;
    }>;
    markReaNnotificationForProfile(patient_id: any, user_id: any, id: any): Promise<{
        status: string;
        message: string;
    }>;
}
