/** * Encrypt a plaintext string. Returns "iv:ciphertext:authTag" (hex-encoded). */ export declare function encrypt(plaintext: string): string; /** * Decrypt a value produced by encrypt(). Expects "iv:ciphertext:authTag" (hex-encoded). * Throws on tampered/corrupt data or wrong key. */ export declare function decrypt(encryptedValue: string): string; //# sourceMappingURL=crypto.d.ts.map