ZodBigIntCheck
import type { ZodBigIntCheck } from "https://esm.sh/zod@3.25.76/index.d.cts";type ZodBigIntCheck = {
kind: "min";
value: bigint;
inclusive: boolean;
message?: string | undefined;
} | {kind: "max";
value: bigint;
inclusive: boolean;
message?: string | undefined;
} | {kind: "multipleOf";
value: bigint;
message?: string | undefined;
};