/** * Move an array item to a different position. Returns a new array with the item moved to the new position. */ export declare function arrayMove(array: T[], from: number, to: number): T[];