export declare const radixSort: ({ list, order, getNumber }: {
    list: any;
    order?: string;
    getNumber?: (n: any) => any;
}) => any;
