export declare const JUST: "@typed/Just"; export declare type JUST = typeof JUST; /** * A JSON-serializable Just data-structure * @name Just * @type */ export interface Just { readonly [JUST]: A; } export declare namespace Just { /** * Creates a Just given a value. * @name Just.of(value: A): Just */ function of(value: A): Just; } //# sourceMappingURL=Just.d.ts.map