/** * Type defunctionalization */ /** * `* -> *` constructors */ export interface HKT { readonly _URI: URI; readonly _A: A; } export declare const Kind: unique symbol; export declare type Kind = typeof Kind; export interface Kinded { } export declare type URIS = keyof Kinded; export declare type KindOf = Kinded

[T];