//#region src/encryption.d.ts /** * Encrypts a payload per RFC 8291 (Web Push Message Encryption) with aes128gcm encoding. * Returns the complete body to POST to the push service (header + ciphertext). */ declare function encryptPayload(payload: string | Uint8Array, subscriberPublicKey: Uint8Array, authSecret: Uint8Array): Promise>; //#endregion export { encryptPayload }; //# sourceMappingURL=encryption.d.mts.map