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