import { Branded } from 'schemata-ts/brand'; import { SchemaExt } from 'schemata-ts/SchemaExt'; interface NaturalBrand { readonly Natural: unique symbol; } /** * Natural branded newtype. * * Represents integers: * * ```math * { z | z ∈ ℤ, z >= 0, z <= 2 ** 53 - 1 } * ``` * * @since 1.0.0 * @category Model */ export declare type Natural = Branded; /** * @since 1.0.0 * @category Model */ export declare type NaturalS = SchemaExt; /** * Natural branded newtype. * * Represents integers: * * ```math * { z | z ∈ ℤ, z >= 0, z <= 2 ** 53 - 1 } * ``` * * @since 1.0.0 * @category Schema */ export declare const Natural: NaturalS; export {}; //# sourceMappingURL=Natural.d.ts.map