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