type EncryptParams = { message: string; encryptionPublicKey: string; }; type DecryptParams = { ciphertext: string; encryptionPrivateKey: string; encryptionPublicKey: string; }; export declare function encryptInboxMessage({ message, encryptionPublicKey }: EncryptParams): { ciphertext: string; }; export declare function decryptInboxMessage({ ciphertext, encryptionPrivateKey, encryptionPublicKey }: DecryptParams): string; export {}; //# sourceMappingURL=message-encryption.d.ts.map