export declare function generateSecret(): string;
/**
 * @description
 * Returns a random item of the given array.
 * If the array is empty, it returns undefined.
 * @param array
 */
export declare function getRandomArrayItem<T>(array: T[]): T | undefined;
