import * as z from "zod";

//#region src/u32-schema.d.ts
/**
* A Zod schema for u32 values.
* Validates that a number is between 0 and 4294967295 (inclusive).
*/
declare const u32Schema: z.ZodNumber;
//#endregion
export { u32Schema };
//# sourceMappingURL=u32-schema.d.ts.map