import { Result } from "../types"; /** * Tests if the value is >= 0 and finite. * * ### Example * ``` * expect(isNonNegativeFinite(0).value).toBeTruthy() * ``` * @param value The value being checked. */ export declare function isNonNegativeFinite(value: number): Result;