/** * Checks whether a given value is nullish. * * @param val The value to check. */ export declare function isNil(val: unknown): val is null | undefined;