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