export declare abstract class Cipher { abstract encrypt(value: I, options?: any): Promise; abstract decrypt(value: R, options?: any): Promise; abstract compare(value: I, hash: R, options?: any): Promise; }