import * as z from "zod";

//#region src/u64-schema.d.ts
/**
* A Zod schema for u64 values.
* Validates that a bigint is between 0 and 2^64-1 (inclusive).
*/
declare const u64Schema: z.ZodBigInt;
//#endregion
export { u64Schema };
//# sourceMappingURL=u64-schema.d.ts.map