export declare const mergeSort: ({ list }: {
    list: any;
}, { shouldSwap }: {
    shouldSwap: any;
}) => any;
