export interface EncryptResult { ciphertext: Uint8Array; iv: Uint8Array; tag: Uint8Array; } export declare function encrypt(key: CryptoKey, plaintext: string): Promise; export declare function decrypt(key: CryptoKey, ciphertext: Uint8Array, iv: Uint8Array, tag?: Uint8Array): Promise; //# sourceMappingURL=aes.d.ts.map