/** * Encrypts with AES-256-GCM using a key derived from the secret. * Output layout: base64url(iv | ciphertext | authTag). */ export declare function encryptAesGcm(plaintext: string, secret: string): string; //# sourceMappingURL=encrypt-aes-gcm.d.ts.map