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