/** * A Type Guard that checks if the given value is equal to undefined * * @category Type Guard */ declare const isUndefined: import("./types").TypeGuardFn; export { isUndefined };