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