export declare enum CipherAlgorithm { PBKDF2 = 0 } export declare class CipherService { constructor(); encrypt(data: string, password: string): string; decrypt(ciphertext: string, password: string): string; }