/** * The specific implementation of array-move, the code comes from https://github.com/sindresorhus/array-move * Since array-move@4 only supports esm, copy the code * * array-move的具体实现,代码来自https://github.com/sindresorhus/array-move * 由于array-move@4只支持esm,所以将代码拷贝过来 * * array-move license: https://github.com/sindresorhus/array-move/blob/main/license */ export declare function arrayMoveImmutable(rawArray: Array, fromIndex: number, toIndex: number): Array;