/** * Generate random alphanumeric string. * Note: this function does not generate cryptographically-secure random string. This function also may vulnerable to timing attack. Don't use this function to generate random string that must be cryptographically secure. * @param {number} length Length of string to be generated. * @returns {string} */ export default function randomString(length: number): string;