/**
 * @group 工具函数
 * @param arr 待打乱的数组
 * @param from 打乱开始的下标
 * @returns
 */
export declare function upsetOrder<T>(arr: T[], from?: number): T[];
