/** * Generates a random key of the specified length. * * @param {number} length - The length of the random key to generate. * @returns {string} - A randomly generated key containing alphanumeric characters. */ declare const generateRandomKey: (length: number) => string; export { generateRandomKey };