/** * Help you to get a random string with numbers * @param {number} length Length of rangom string * @returns {string} Returns a random string */ declare const getRandomString: (length: number) => string; export { getRandomString };