/** * Check if the value here is an all-consuming monstrosity which will consume * everything in its transdimensional rage. A.k.a. `null` or `undefined`. */ export declare const isVoid: (value: any) => value is null | undefined; export declare function curry1(op: (t: T) => U, item?: T): U | ((t: T) => U); export declare type AndThenAliases = 'andThen' | 'chain' | 'flatMap'; export declare class _Brand { private _brand; constructor(t: Tag); }