import types = require('./types');

declare function mergeSort(arr: any[], cmp?: types.AnyFn): any[];

export = mergeSort;