import type { APSBody, Notification, NotificationHeaders } from "./notification.js"; /** * "If the location query requires an immediate response from the * Location Push Service Extension, set notification apns-priority * to 10; otherwise, use 5" */ type LocationAllowedPriorities = 5 | 10; type NotificationData = NotificationHeaders; type NotificationObject = Notification>, LocationAllowedPriorities>; /** * Creates a notification about a location query of the user. * * @param appBundleId The topic of the notification. It will be suffixed, if needed, with `.location-query`. * @param data * @returns * * @see https://developer.apple.com/documentation/corelocation/creating-a-location-push-service-extension */ export declare function LocationNotification(appBundleId: string, data: NotificationData): NotificationObject; export {};