/** * Merge sort with a customized comparator */ export declare function mergeSort(array: T[], comparator?: (a: T, b: T) => number): T[];