import { Nullish } from "../types"; /** * Assert is Undefined */ export declare const isUndef: (arg: unknown) => arg is void | undefined; /** * Assert is Nullish */ export declare const isNullish: (arg: unknown) => arg is Nullish; //# sourceMappingURL=is.d.ts.map