/** * Encrypt a JSON-serializable payload for the relayer using NaCl box. * Layout: [ephemeralPubKey (32)] [nonce (24)] [ciphertext (...)] */ export declare function encryptForRelayer(data: unknown, relayerPublicKey: Uint8Array): string;