import JSBI from 'jsbi'; export declare const MAX_SAFE_INTEGER: JSBI; /** * Computes floor(sqrt(value)) * @param value the value for which to compute the square root, rounded down */ export declare function sqrt(value: JSBI): JSBI; /** * Returns the smallest member of the array * @param values the values from which the smallest gets returned * @returns the smallest memmber of the array */ export declare function minimum(...values: JSBI[]): JSBI; /** * Returns the biggest member of the array * @param values the values from which the biggest gets returned * @returns the biggest memmber of the array */ export declare function maximum(...values: JSBI[]): JSBI; export declare function difference(a: JSBI, b: JSBI): JSBI;