/**
 * Remove random item(s) from the Array and return it.
 * Returns an Array of items if [nItems] is provided or a single item if
 * it isn't specified.
 */
declare function pick(arr: any, nItems: any): any;
export default pick;
