/** * Count minimum and maximum on large arrays without hitting RangeError: Maximum call stack size exceeded */ export declare function minmax(array: number[]): { min: number; max: number; }; /** * TODO: !!! Use this util istead of Math.min and Math.max */