export declare class AesService { private readonly SECRET_CODE; private keySize; private iterationCount; private pwdEncrypted; constructor(); generateKey(salt: string): any; encrypt(planText: string): string; }