import { Result } from "../types"; /** * * ### Example * ``` * expect(isDefined('hello').value).toBeTruthy() * ``` * @param value The value being checked. * * See https://stackoverflow.com/questions/51003292/exporting-utility-functions-in-typescript/51004236#51004236 * for an implementation reference. */ export declare function isDefined(value: any): Result;