/** * Checks whether input is undefined or null * @function isNotNil * @memberof RamdaExtensions * @since v1.0.0 * @param {*} input Input to check nullity * @returns {boolean} * @example * * isNotNil(undefined) //=> false * isNotNil(1) //=> true * isNotNil("1") //=> true * isNotNil("") //=> true * isNotNil([]) //=> true * isNotNil(["foo"]) //=> true * isNotNil({}) //=> true * isNotNil({"foo":"bar"}) //=> true * */ export declare const isNotNil: (value: any) => boolean;