import type { MessageHandler, MessageHandlerInboundMessage } from '@credo-ts/core'; import { PushNotificationsFcmDeviceInfoMessage } from '../messages'; /** * Handler for incoming fcm push notification device info messages */ export declare class PushNotificationsFcmDeviceInfoHandler implements MessageHandler { supportedMessages: (typeof PushNotificationsFcmDeviceInfoMessage)[]; /** /* 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; }