export declare const heapSort: ({ list }: {
    list: any;
}, { compare, swap }: {
    compare: any;
    swap: any;
}) => any;
