import { Branded } from 'schemata-ts/brand'; import { SchemaExt } from 'schemata-ts/SchemaExt'; interface NegativeFloatBrand { readonly NegativeFloat: unique symbol; } /** * Negative floating point branded newtype. * * Represents negative floating point numbers: * * ```math * { f | f ∈ ℝ, f < 0, f >= -Number.MAX_VALUE } * ``` * * @since 1.0.0 * @category Model */ export declare type NegativeFloat = Branded; /** * @since 1.0.0 * @category Model */ export declare type NegativeFloatS = SchemaExt; /** * Negative floating point branded newtype. * * Represents negative floating point numbers: * * ```math * { f | f ∈ ℝ, f < 0, f >= -Number.MAX_VALUE } * ``` * * @since 1.0.0 * @category Schema */ export declare const NegativeFloat: NegativeFloatS; export {}; //# sourceMappingURL=NegativeFloat.d.ts.map