import type { ConnectorProtocol } from "./connector.js"; export interface TokenConnectorData { /** * PKCS 8 file content to be read and used as the private key. */ key: Uint8Array; /** * A 10-character string Key ID provided by Apple. */ keyId: string; /** * The team ID of the Apple Developer Account. */ teamIdentifier: string; } /** * Helps establishing a token based connection to APNs. * @see https://developer.apple.com/documentation/usernotifications/establishing-a-token-based-connection-to-apns * * @param details */ export declare function TokenConnector(details: TokenConnectorData): ConnectorProtocol;