import { AlertsService } from './alerts.service';
import { Response } from 'express';
export declare class AlertsController {
    private readonly alertsService;
    constructor(alertsService: AlertsService);
    getMyNotifications(res: Response, user: any, page?: number, limit?: number): Promise<Response<any, Record<string, any>>>;
    sendTestAlert(user: any): Promise<{
        success: boolean;
        message: string;
    }>;
}
