export declare function isNil(v: Nilable): v is Nil; export declare type Nullable = T | null; export declare type Nilable = T | Nil; export declare type Nil = null | undefined; export declare function isBool(v: unknown): v is boolean;