import type { MessageHandler, MessageHandlerInboundMessage } from '@credo-ts/core'; import { PushNotificationsFcmSetDeviceInfoMessage } from '../messages'; /** * Handler for incoming push notification device info messages */ export declare class PushNotificationsFcmSetDeviceInfoHandler implements MessageHandler { supportedMessages: (typeof PushNotificationsFcmSetDeviceInfoMessage)[]; /** /* Only perform checks about message fields /* /* The result can be hooked into through the generic message processed event */ handle(inboundMessage: MessageHandlerInboundMessage): Promise; }