export default class CryptHelper { static encryptPassword(data: string): string; static decryptPassword(data: string): string; static cipherText(text: string, key: string, vector: string): string; static decipherText(text: string, key: string, vector: string): string; }