/** * Moves item at arr[sourceIdx] to arr[destIdx] */ export declare function moveItem(arr: U[], sourceIdx: any, destIdx: any): void;