/**
 * 将一个数组随机打乱，返回一个新的数组
 *
 * @param {Array} array 数组
 * @return {Array}
 */
declare function shuffle(array: any): any[];
export default shuffle;
