import type { ApnsDeviceInfo } from '../models'; import { AgentMessage } from '@credo-ts/core'; interface PushNotificationsApnsDeviceInfoOptions extends ApnsDeviceInfo { id?: string; threadId: string; } /** * Message to send the apns device information from another agent for push notifications * This is used as a response for the `get-device-info` message * * @see https://github.com/hyperledger/aries-rfcs/tree/main/features/0699-push-notifications-apns#device-info */ export declare class PushNotificationsApnsDeviceInfoMessage extends AgentMessage { constructor(options: PushNotificationsApnsDeviceInfoOptions); readonly type: string; static readonly type: import("@credo-ts/core/build/utils/messageType").ParsedMessageType; deviceToken: string | null; } export {};