/** * 随机打乱数组 * @param array 数组 * @returns 打乱后的数组 * @see {@link https://yourhhh.github.io/zztoolDocument} API 文档 * @example * // 调用示例 * const arr = [1,2,3,4,5,6,7,8,9,10]; * shuffleArray(arr); // 打乱后的数组 */ export declare function shuffleArray(array: T[]): T[];