import * as z from "zod";

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