export declare class EncryptService { private readonly logger; decryptWithPrivateKey(encryptedText: string, privateKey: string): string; encryptWithAES(text: string, aesKey: string): string; decryptWithAES(encryptedText: string, aesKey: string): string; }