declare function swap(array: any[], index0: Function | number, index1: Function | number): any[]; declare function findIndex(array: any[], predicate: Function): number; declare function moveUp(array: any[], index: Function | number): any[]; declare function moveDown(array: any[], index: Function | number): any[]; declare function moveTop(array: any[], index: Function | number): any[]; declare function moveBottom(array: any[], index: Function | number): any[]; declare function move(array: any[], from: Function | number, to: Function | number): any[]; declare function remove(array: any[], index: Function | number): any[]; declare function insertAt(array: any[], index: Function | number, data: any): any[]; declare function insertBefore(array: any[], index: Function | number, data: any): any[]; declare function insertAfter(array: any[], index: Function | number, data: any): any[]; declare function moveBefore(array: any[], from: Function | number, to: Function | number): any[]; declare function moveAfter(array: any[], from: Function | number, to: Function | number): any[]; declare const ArrayUtils: { findIndex: typeof findIndex; swap: typeof swap; moveUp: typeof moveUp; moveDown: typeof moveDown; moveTop: typeof moveTop; moveBottom: typeof moveBottom; move: typeof move; remove: typeof remove; insertAt: typeof insertAt; insertBefore: typeof insertBefore; insertAfter: typeof insertAfter; moveBefore: typeof moveBefore; moveAfter: typeof moveAfter; }; export default ArrayUtils;