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