/** * Generates a random string of the specified length using only digits and alphabet characters. * @param length - The length of the random string to generate. * @returns A random string of the specified length. */ export declare function generateRandomString(length: number): string; export declare function generateRandomApiKey(): Promise;