import type { ApnsDeviceInfo } from '../models'; import { AgentMessage } from '@credo-ts/core'; interface PushNotificationsApnsSetDeviceInfoOptions extends ApnsDeviceInfo { id?: string; } /** * Message to set the apns device information at another agent for push notifications * * @see https://github.com/hyperledger/aries-rfcs/tree/main/features/0699-push-notifications-apns#set-device-info */ export declare class PushNotificationsApnsSetDeviceInfoMessage extends AgentMessage { constructor(options: PushNotificationsApnsSetDeviceInfoOptions); deviceToken: string | null; readonly type: string; static readonly type: import("@credo-ts/core/build/utils/messageType").ParsedMessageType; } export {};