/** * Calls a defined callback function on each element of an array, and * returns the smallest (using `<`) of all the callback return values, or * `null` if the array is empty. * * @param callback - A function that accepts up to three arguments. The * min method calls the callback function one time for each * element in the array. */ export declare const min: (callback?: import("../../types/Callback.js").Callback | undefined) => (arr: readonly T[]) => V | null;