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