/**
 * returns a random item from an array, or undefined when array is empty
 */
export declare function randomFromArray<T>(array: T[]): T;
