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