import types from './types'; declare function insertionSort(arr: any[], cmp?: types.AnyFn): any[]; export default insertionSort;