export declare function isNullish(val: unknown): val is null | undefined; export declare function isNotNullish(p: T | null | undefined): p is T;