declare type AesGcmModifiedType = { decrypt(base64Ciphertext: string, key: string): Promise; encrypt(plainText: string, inBinary: boolean, key: string): Promise; }; declare const _default: AesGcmModifiedType; export default _default;