import type { MessageHandler, MessageHandlerInboundMessage } from '@credo-ts/core'; import { PushNotificationsFcmProblemReportMessage } from '../messages'; /** * Handler for incoming push notification problem report messages */ export declare class PushNotificationsFcmProblemReportHandler implements MessageHandler { supportedMessages: (typeof PushNotificationsFcmProblemReportMessage)[]; /** /* We don't really need to do anything with this at the moment /* The result can be hooked into through the generic message processed event */ handle(inboundMessage: MessageHandlerInboundMessage): Promise; }