import type { ApnsDeviceInfo } from './models/ApnsDeviceInfo'; import { PushNotificationsApnsSetDeviceInfoMessage, PushNotificationsApnsGetDeviceInfoMessage, PushNotificationsApnsDeviceInfoMessage } from './messages'; export declare class PushNotificationsApnsService { createSetDeviceInfo(deviceInfo: ApnsDeviceInfo): PushNotificationsApnsSetDeviceInfoMessage; createGetDeviceInfo(): PushNotificationsApnsGetDeviceInfoMessage; createDeviceInfo(options: { threadId: string; deviceInfo: ApnsDeviceInfo; }): PushNotificationsApnsDeviceInfoMessage; }