export default class Cipher { private readonly key; private readonly iv; constructor(key: string, iv: string); encrypt(message: string): string; decrypt(encryptString: string): string; static getKeyIv(): string; static getCipher(keyIv: string): Cipher; }