/**
 * Picks element with highest score from the array using supplied scoring function.
 * If multiple elements with the same highest score exist, the result will be first such encountered element
 * @template T
 * @param {T[]} array
 * @param {function(el:T, index:number):number} scoreFunction
 * @returns {T|undefined}
 */
export function array_pick_best_element<T>(array: T[], scoreFunction: any): T | undefined;
//# sourceMappingURL=array_pick_best_element.d.ts.map