///
///
import type { BinaryLike, CipherGCMTypes, CipherKey } from 'crypto';
export declare class AES {
GCM: string;
algorithm: string;
algorithmGCM: CipherGCMTypes;
encrypt(srcData: string, key: CipherKey, iv: BinaryLike): string;
encryptGCM(srcData: string, key: CipherKey, iv: BinaryLike): string;
decrypt(cipherText: string, keyAndIv: Buffer): string;
decryptGCM(cipherText: string, keyAndIv: Buffer): string;
}