/** * RandomGenerator class */ export default class RandomGenerator { /** * Generate a random nonce * * @param {number} [length=40] - The length of the nonce * @returns {string} */ static nonce(length?: number): string; } //# sourceMappingURL=RandomGenerator.d.ts.map