/** * Returns the unit in the last place (ulp) value of the given number. * * * not optimized; use in tests only! * * @param x */ declare function getUlp(x: number): number; export { getUlp };