declare function isNullish<Type>(value: Type): value is Type & (null | undefined);
export { isNullish };
