export declare type INullish = null | undefined;
export declare function isNullish(value: any): value is INullish;
