import * as z from 'zod'; /** * Zod schema for an arbitrary precision natural number. * Maps to `u128` in Rust. * * @example * ```typescript * const schema = j.object({ * status: j.nat() * }); * ``` */ export declare const NatSchema: z.ZodBigInt;