import type { Notification, NotificationBody, NotificationHeaders } from "./notification.js"; /** * Empty interface on purpose to allow for TS * autocompletion to be extended by the user. * Must be exported to allow extending in the user's code. */ export interface NotificationCustomAppData { } /** * @see https://developer.apple.com/documentation/devicemanagement/sending-mdm-commands-to-a-device#Initiate-Polling-for-MDM-Commands */ interface MDMNotificationBody { mdm: string; } type NotificationData = NotificationHeaders & NotificationBody, NotificationCustomAppData>; type NotificationObject = Notification; export declare function MDMNotification(mdmUid: string, data: NotificationData): NotificationObject; export {};