export declare function asyncSort(array: any[], comparator: (a: any, b: any) => Promise<number>): Promise<any[]>;
