/// import { BinaryLike } from 'crypto'; export declare function Encrypt(userKey: BinaryLike, plainText: string): any; export declare function Decrypt(userKey: BinaryLike, cipherText: string): string;