import { Nil } from '../interfaces'; /** * Checks if value is `null` or `undefined`. * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 78 bytes * - Micro-dash: 29 bytes */ export declare function isNil(value: any): value is Nil;