/** * Checks if a value is neither `undefined` nor `null`. * * @param value - The value to check. * @returns `true` if the value is neither `undefined` nor `null`, otherwise `false`. */ export declare function isTruthy(value: T): value is NonNullable;