declare function arrayAverage(values: number[]): number; declare function arrayMedian(values: number[], isSorted?: boolean): number; declare function arraySum(values: number[]): number; declare function round(value: number, places: number): number; /** * Floor the decimal places to @places */ declare function floor(value: number, places: number): number; /** * Round a number to the nearest threshold increment */ declare function roundBy(num: number, threshold: number): number; declare function max(a: T, b: T): T; declare function min(a: T, b: T): T; export declare const MathUtils: { arrayAverage: typeof arrayAverage; arrayMedian: typeof arrayMedian; arraySum: typeof arraySum; round: typeof round; roundBy: typeof roundBy; min: typeof min; max: typeof max; floor: typeof floor; }; export {}; //# sourceMappingURL=math.d.ts.map