/** * Returns a random item from the input array */ declare const pickRandom: (arr: any[]) => any; export default pickRandom;