import { SchemaExt } from 'schemata-ts/SchemaExt'; /** * @since 1.0.0 * @category Model */ export declare type BooleanS = SchemaExt; /** * A boolean value whose encoded representation is a number, where 0 is false and 1 is true. * * Strictly speaking, this will _decode_ any number (0 becomes false, and non-zero becomes * true), but will only _encode_ 0 and 1. * * @since 1.0.0 * @category Schema */ export declare const BooleanFromNumber: BooleanS; //# sourceMappingURL=BooleanFromNumber.d.ts.map