import * as z from "zod";

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