/** * Hashes the given string using the MD5 algorithm. * * @param {any} data The data to hash. If not a string, converted with JSON.stringify. * @return {string} An MD5 hash string. */ export default function md5(data: any): string;