/** * @file * @author Auth0 https://github.com/auth0/auth0.js * @license MIT */ /** * Generates a random string of the specified length using characters from a defined set. * @param {number} length The length of the random string to generate. * @returns {string} The generated random string. */ declare function string(length: number): string; declare const _default: { string: typeof string; }; export default _default;