/**
 * 校验是否是 undefined
 */
declare function isUndefined(val: unknown): val is undefined;

export { isUndefined };
