export type Nil = undefined | null; /** * Asserts that a value is `null` or `undefined` * * @tags guard, truthiness */ export declare const isNil: (value: unknown) => value is Nil;