interface AESInit { iv: string; salt: string; } /** * * @param text Text to encrypt * @param password * @param aesInit Object that contains IV + Salt. If its null, random bytes will be used. * @param hops * @returns Encrypted text */ export default function encrypt(text: string, password: string, aesInit?: AESInit | null, hops?: number): string; export {};