export declare const arrayMoveMutate: >(array: DataType[], from: number, to: number) => void; /** * 数组交换位置 * @param array 数组 * @param from 开始位置 * @param to 结束位置 * @returns */ export declare const arrayMove: >(array: DataType[], from: number, to: number) => DataType[];