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