import { Logger } from '@nestjs/common';
import { PHXGrpcClientSystemService } from "../grpc-client/grpc-client-system.service";
export declare class PHXStatisticalNotificationByModuleService {
    private readonly grpcClientSystemService;
    logger: Logger;
    constructor(grpcClientSystemService: PHXGrpcClientSystemService);
    /**
     * update statistical notification by module
     */
    updateStatisticalNotificationByModule({ userId, deviceId, appName, hostname, moduleCode, action, studentCode, totalNotification, totalNotificationImportant, }: {
        userId: number;
        deviceId: string;
        hostname: string;
        appName: string;
        moduleCode: string;
        studentCode?: string;
        action?: string;
        totalNotification: number;
        totalNotificationImportant: number;
    }): Promise<void>;
}
